wok-next annotate thunar-volman/receipt @ rev 4279
libnl: fix build (http://bugs.gentoo.org/show_bug.cgi?id=225393)
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sat Sep 26 06:38:25 2009 +0000 (2009-09-26) |
parents | ae6a16e8b7bc |
children | c219069ab084 |
rev | line source |
---|---|
erjo@2072 | 1 # SliTaz package receipt. |
erjo@2072 | 2 |
erjo@2072 | 3 PACKAGE="thunar-volman" |
erjo@4145 | 4 VERSION="0.3.80" |
erjo@2072 | 5 CATEGORY="x-window" |
erjo@4145 | 6 SHORT_DESC="Thunar Volume Manager plugin" |
erjo@2072 | 7 MAINTAINER="erjo@slitaz.org" |
erjo@4145 | 8 DEPENDS="thunar" |
erjo@4145 | 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@4145 | 12 WGET_URL="http://goodies.xfce.org/releases/thunar-volman/$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 \ |
pascal@4234 | 19 --libexecdir=/usr/lib/$PACKAGE \ |
erjo@2072 | 20 --mandir=/usr/share/man $CONFIGURE_ARGS && \ |
erjo@2072 | 21 make && make DESTDIR=$PWD/_pkg install |
erjo@2072 | 22 } |
erjo@2072 | 23 |
erjo@2072 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@2072 | 25 genpkg_rules() |
erjo@2072 | 26 { |
pascal@4234 | 27 mkdir -p $fs/usr/share/locale $fs/usr/lib |
erjo@2072 | 28 |
erjo@2072 | 29 cp -a $_pkg/usr/bin $fs/usr |
pascal@4234 | 30 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib |
erjo@2072 | 31 cp -a $_pkg/usr/share/applications $fs/usr/share |
erjo@2072 | 32 cp -a $_pkg/usr/share/icons $fs/usr/share |
erjo@2072 | 33 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
erjo@4145 | 34 |
pascal@4234 | 35 chmod 0755 $fs/usr/lib/$PACKAGE/thunar-* |
erjo@2072 | 36 } |
erjo@2072 | 37 |