gournet review (was Re: i18n guidelines?)

Ignacio Vazquez-Abrams ivazquez at ivazquez.net
Sat Apr 23 21:45:53 UTC 2005


On Sat, 2005-04-23 at 07:13 -0700, Michael A. Peters wrote:
> http://mpeters.us/fc_extras/gourmet.spec

> cd i18n
> rm -f `find . -print |grep "\.mo$"`
> chmod +x make_mo.sh
> for a in *.po; do
> 	file="`echo $a |sed s?"\.po$"?""?`"
> 	./make_mo.sh $file
> done
> cd ..

pushd i18n
find -name \*.mo | xargs rm -f # or find -name \*.mo -exec rm -f {} \;
for file in *.po ; do
  sh make_mo.sh $(basename $file .po)
done
popd

Although the apps build script really ought to be doing this itself.

> %ghost %{_datadir}/applications/gourmet.desktop

%ghost is usually used for files that will be created after RPM
installation but need to be erased when the package is removed. This
file really ought to just be rm'ed, or pass it to d-f-i along with
--delete-original.

-- 
Ignacio Vazquez-Abrams <ivazquez at ivazquez.net>
http://fedora.ivazquez.net/

gpg --keyserver hkp://subkeys.pgp.net --recv-key 38028b72
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 189 bytes
Desc: This is a digitally signed message part
URL: <http://listman.redhat.com/archives/fedora-extras-list/attachments/20050423/202a2faf/attachment.sig>


More information about the fedora-extras-list mailing list