tidy spec
This commit is contained in:
parent
9e6726b4c9
commit
9ad63c7c46
@ -2,7 +2,7 @@ Name: hunspell-tl
|
||||
Summary: Tagalog hunspell dictionaries
|
||||
%define upstreamid 20050109
|
||||
Version: 0.%{upstreamid}
|
||||
Release: 2%{?dist}
|
||||
Release: 3%{?dist}
|
||||
Source: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/tl_PH.zip
|
||||
Group: Applications/Text
|
||||
URL: http://borel.slu.edu/crubadan/apps.html
|
||||
@ -19,8 +19,16 @@ Tagalog hunspell dictionaries.
|
||||
%setup -q -c -n hunspell-tl
|
||||
|
||||
%build
|
||||
iconv -f ISO-8859-1 -t UTF-8 README_tl_PH.txt > README_tl_PH.txt.new
|
||||
mv -f README_tl_PH.txt.new README_tl_PH.txt
|
||||
for i in README_tl_PH.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 +51,9 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_datadir}/myspell/*
|
||||
|
||||
%changelog
|
||||
* Sat Jul 11 2009 Caolan McNamara <caolanm@redhat.com> - 0.20050109-3
|
||||
- tidy spec
|
||||
|
||||
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.20050109-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user