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

Removed more unneeded strips (those ones are handled by Tazwok).
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Apr 04 01:54:51 2011 +0000 (2011-04-04)
parents 5ddb80e703d5
children 2d429c0a2022
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"
slaxemulator@9475 9 BUILD_DEPENDS="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
slaxemulator@9475 18 ./configure --libexecdir=/usr/lib && \
slaxemulator@9475 19 make && make install
erjo@2072 20 }
erjo@2072 21
erjo@2072 22 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2072 23 genpkg_rules()
erjo@2072 24 {
erjo@2072 25 mkdir -p $fs/usr/share/locale \
slaxemulator@8291 26 $fs/usr/lib/thunarx-2
erjo@2072 27
slaxemulator@9475 28 cp -a $_pkg/usr/lib/thunarx-2/*.so* $fs/usr/lib/thunarx-2
erjo@2072 29 cp -a $_pkg/usr/share/icons $fs/usr/share
erjo@2072 30 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
pascal@4233 31 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib
erjo@4157 32
erjo@4157 33 # Fix perms
erjo@4872 34 chmod 755 $fs/usr/lib/thunar-archive-plugin/*
erjo@2072 35
erjo@2072 36 # Cleanup
slaxemulator@8291 37 rm -f $fs/usr/lib/thunarx-2/*.*a
erjo@2072 38 }
erjo@2072 39