wok annotate thunar-archive-plugin/receipt @ rev 8087

Changed linux-ieee1394 to linux-firewire. This is cause ieee1394 stack is replaced by firewire now.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Jan 22 04:19:17 2011 +0000 (2011-01-22)
parents 0874004b631d
children 5ddb80e703d5
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@4872 8 DEPENDS="thunar"
gokhlayeh@8039 9 BUILD_DEPENDS="thunar-dev intltool"
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
slaxemulator@8084 18 # thunar 1.2 hack
slaxemulator@8084 19 sed -i "s/thunarx\-1/thunarx\-2/g" configure
erjo@2072 20 ./configure --prefix=/usr --infodir=/usr/share/info \
erjo@4872 21 --libexecdir=/usr/lib \
erjo@2072 22 --mandir=/usr/share/man $CONFIGURE_ARGS && \
erjo@2072 23 make && make DESTDIR=$PWD/_pkg install
erjo@2072 24 }
erjo@2072 25
erjo@2072 26 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2072 27 genpkg_rules()
erjo@2072 28 {
erjo@2072 29 mkdir -p $fs/usr/share/locale \
erjo@2072 30 $fs/usr/lib/thunarx-1
erjo@2072 31
erjo@2072 32 cp -a $_pkg/usr/lib/thunarx-1/*.so* $fs/usr/lib/thunarx-1
erjo@2072 33 cp -a $_pkg/usr/share/icons $fs/usr/share
erjo@2072 34 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
pascal@4233 35 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib
erjo@4157 36
erjo@4157 37 # Fix perms
erjo@4872 38 chmod 755 $fs/usr/lib/thunar-archive-plugin/*
erjo@2072 39
erjo@2072 40 # Cleanup
erjo@2072 41 rm -f $fs/usr/lib/thunarx-1/*.*a
erjo@4872 42
erjo@4872 43 # Strip evrythings
erjo@4872 44 find $fs/usr/lib/ -exec strip -s {} 2> /dev/null \;
erjo@2072 45 }
erjo@2072 46