tidy spec
This commit is contained in:
parent
4c8f841e6b
commit
bfdb07debd
@ -1,7 +1,8 @@
|
||||
Name: hunspell-ku
|
||||
Summary: Kurdish hunspell dictionaries
|
||||
Version: 0.21
|
||||
Release: 4%{?dist}
|
||||
Release: 5%{?dist}
|
||||
#http://hunspell-ku.googlecode.com/files/ku_TR-021_source.zip ?
|
||||
Source0: http://downloads.sourceforge.net/myspellkurdish/ku_TR-021.zip
|
||||
Group: Applications/Text
|
||||
#http://code.google.com/p/hunspell-ku/ ?
|
||||
@ -19,8 +20,16 @@ Kurdish hunspell dictionaries.
|
||||
%setup -q -n ku_TR
|
||||
|
||||
%build
|
||||
tr -d '\r' < README_ku_TR.txt > README_ku_TR.txt.new
|
||||
iconv -f ISO-8859-1 -t UTF-8 README_ku_TR.txt.new > README_ku_TR.txt
|
||||
for i in README_ku_TR.txt; do
|
||||
if ! iconv -f utf-8 -t utf-8 -o /dev/null $i > /dev/null 2>&1; then
|
||||
iconv -f ISO-8859-1 -t UTF-8 $i > $i.new
|
||||
touch -r $i $i.new
|
||||
mv -f $i.new $i
|
||||
fi
|
||||
tr -d '\r' < $i > $i.new
|
||||
touch -r $i $i.new
|
||||
mv -f $i.new $i
|
||||
done
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
@ -43,6 +52,9 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_datadir}/myspell/*
|
||||
|
||||
%changelog
|
||||
* Fri Jul 10 2009 Caolan McNamara <caolanm@redhat.com> - 0.21-5
|
||||
- tidy spec
|
||||
|
||||
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.21-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user