wok-stable annotate thunar-archive-plugin/receipt @ rev 3026
Add: murrine-svn-themes (some themes for murrine GTK engine)
author | Rohit Joshi <jozee@slitaz.org> |
---|---|
date | Mon May 11 19:49:47 2009 +0000 (2009-05-11) |
parents | |
children | 1e286e57a52f |
rev | line source |
---|---|
erjo@2072 | 1 # SliTaz package receipt. |
erjo@2072 | 2 |
erjo@2072 | 3 PACKAGE="thunar-archive-plugin" |
erjo@2072 | 4 VERSION="0.2.4" |
erjo@2072 | 5 CATEGORY="x-window" |
erjo@2072 | 6 SHORT_DESC="Thunar Archive Manager plugin" |
erjo@2072 | 7 MAINTAINER="erjo@slitaz.org" |
erjo@2072 | 8 DEPENDS="Thunar" |
erjo@2072 | 9 BUILD_DEPENDS="Thunar-dev" |
erjo@2072 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@2072 | 11 WEB_SITE="http://foo-projects.org/~benny/projects/thunar-archive-plugin/index.html" |
erjo@2072 | 12 WGET_URL="http://download.berlios.de/xfce-goodies/$TARBALL" |
erjo@2072 | 13 |
erjo@2072 | 14 # Rules to configure and make the package. |
erjo@2072 | 15 compile_rules() |
erjo@2072 | 16 { |
erjo@2072 | 17 cd $src |
erjo@2072 | 18 ./configure --prefix=/usr --infodir=/usr/share/info \ |
erjo@2072 | 19 --mandir=/usr/share/man $CONFIGURE_ARGS && \ |
erjo@2072 | 20 make && make DESTDIR=$PWD/_pkg install |
erjo@2072 | 21 } |
erjo@2072 | 22 |
erjo@2072 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@2072 | 24 genpkg_rules() |
erjo@2072 | 25 { |
erjo@2072 | 26 mkdir -p $fs/usr/share/locale \ |
erjo@2072 | 27 $fs/usr/lib/thunarx-1 |
erjo@2072 | 28 |
erjo@2072 | 29 cp -a $_pkg/usr/lib/thunarx-1/*.so* $fs/usr/lib/thunarx-1 |
erjo@2072 | 30 cp -a $_pkg/usr/share/icons $fs/usr/share |
erjo@2072 | 31 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
erjo@2072 | 32 |
erjo@2072 | 33 # Cleanup |
erjo@2072 | 34 rm -f $fs/usr/lib/thunarx-1/*.*a |
erjo@2072 | 35 } |
erjo@2072 | 36 |