wok-next annotate thunar-archive-plugin/receipt @ rev 8804
fix bdeps: cairo-clock needs intltool to compile
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Wed Feb 23 00:25:43 2011 +0100 (2011-02-23) |
parents | 54b16d8bdd21 |
children | e5ae411e1d8c |
rev | line source |
---|---|
erjo@2072 | 1 # SliTaz package receipt. |
erjo@2072 | 2 |
erjo@2072 | 3 PACKAGE="thunar-archive-plugin" |
slaxemulator@8291 | 4 VERSION="0.3.0" |
erjo@2072 | 5 CATEGORY="x-window" |
erjo@2072 | 6 SHORT_DESC="Thunar Archive Manager plugin" |
erjo@2072 | 7 MAINTAINER="erjo@slitaz.org" |
erjo@4872 | 8 DEPENDS="thunar" |
gokhlayeh@8039 | 9 BUILD_DEPENDS="thunar-dev intltool" |
erjo@2072 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
slaxemulator@8291 | 11 WEB_SITE="http://goodies.xfce.org/projects/thunar-plugins/thunar-archive-plugin" |
slaxemulator@8291 | 12 WGET_URL="http://archive.xfce.org/src/thunar-plugins/$PACKAGE/${VERSION%.*}/$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@4872 | 19 --libexecdir=/usr/lib \ |
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 { |
erjo@2072 | 27 mkdir -p $fs/usr/share/locale \ |
slaxemulator@8291 | 28 $fs/usr/lib/thunarx-2 |
erjo@2072 | 29 |
slaxemulator@8291 | 30 cp -a $_pkg/usr/lib/thunarx-2/*.so* $fs/usr/lib/thunarx-1 |
erjo@2072 | 31 cp -a $_pkg/usr/share/icons $fs/usr/share |
erjo@2072 | 32 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
pascal@4233 | 33 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib |
erjo@4157 | 34 |
erjo@4157 | 35 # Fix perms |
erjo@4872 | 36 chmod 755 $fs/usr/lib/thunar-archive-plugin/* |
erjo@2072 | 37 |
erjo@2072 | 38 # Cleanup |
slaxemulator@8291 | 39 rm -f $fs/usr/lib/thunarx-2/*.*a |
erjo@4872 | 40 |
erjo@4872 | 41 # Strip evrythings |
erjo@4872 | 42 find $fs/usr/lib/ -exec strip -s {} 2> /dev/null \; |
erjo@2072 | 43 } |
erjo@2072 | 44 |