diff options
author | François Visdeloup <fanchyannmaria at orange dot fr> | 2010-01-16 23:24:47 +0100 |
---|---|---|
committer | François Visdeloup <fanchyannmaria at orange dot fr> | 2010-01-16 23:24:47 +0100 |
commit | aba5eaaf62806472e452445b42fa6cb825c4c1f8 (patch) | |
tree | 602be406de3d5823b138790c5a27d2eb0a2e4132 /extra/cover-thumbnailer/Pkgfile | |
parent | 679c17db14ad05dcaf552f9543fec3ac7c95e2d3 (diff) | |
download | nutyx-pakxe-aba5eaaf62806472e452445b42fa6cb825c4c1f8.tar.gz nutyx-pakxe-aba5eaaf62806472e452445b42fa6cb825c4c1f8.tar.bz2 nutyx-pakxe-aba5eaaf62806472e452445b42fa6cb825c4c1f8.tar.xz nutyx-pakxe-aba5eaaf62806472e452445b42fa6cb825c4c1f8.zip |
ajout de cover-thumbnailer#0.6-1.pkg.tar.gz
Diffstat (limited to 'extra/cover-thumbnailer/Pkgfile')
-rw-r--r-- | extra/cover-thumbnailer/Pkgfile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/extra/cover-thumbnailer/Pkgfile b/extra/cover-thumbnailer/Pkgfile new file mode 100644 index 000000000..f94dc7709 --- /dev/null +++ b/extra/cover-thumbnailer/Pkgfile @@ -0,0 +1,33 @@ +# Description:afficher les pochettes des albums de musique dans nautilus +# URL: http://blog.sckyzo.com/2010/01/15/cover-thumbnailer-de-meilleures-miniatures-dans-nautilus/ +# Maintainer: NuTyX core team +# Packager: fanch +# Depends on: pil,python,pygtk,gconf + +name=cover-thumbnailer +version=0.6 +release=1 +source=(http://download.flogisoft.com/files/Software/Cover_thumbnailer/cover-thumbnailer_0.6_all.tar.gz) + +build() { + cd cover-thumbnailer_0.6_all + mkdir -p $PKG/usr/share/{locale/fr/LC_MESSAGES,cover-thumbnailer,man/man1} + mkdir -p $PKG/usr/bin + + cp -a share/* $PKG/usr/share/cover-thumbnailer/ + chmod -Rv 644 $PKG/usr/share/cover-thumbnailer/ + chmod -v 755 $PKG/usr/share/cover-thumbnailer + cp -a man/*.1 $PKG/usr/share/man/man1/ + chmod -v 644 $PKG/usr/share/man/man1/* + cp locale/fr/LC_MESSAGES/cover-thumbnailer-gui.mo \ + $PKG/usr/share/locale/fr/LC_MESSAGES/ + chmod -v 644 $PKG/usr/share/locale/fr/LC_MESSAGES/cover-thumbnailer-gui.mo + + for i in cover-thumbnailer.py cover-thumbnailer-gui.py + do + cp $i $PKG/usr/bin/ + chmod -v 755 $PKG/usr/bin/$i + done + chown -R root:root $PKG +} + |