wok view thunar-archive-plugin/receipt @ rev 11914

Up: tazpanel (1.4) - Improved dropdown menu, add easy wifi configuration and more :-)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Feb 29 22:46:54 2012 +0100 (2012-02-29)
parents 2d429c0a2022
children 600aaedb561d
line source
1 # SliTaz package receipt.
3 PACKAGE="thunar-archive-plugin"
4 VERSION="0.3.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Thunar Archive Manager plugin"
7 MAINTAINER="erjo@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://goodies.xfce.org/projects/thunar-plugins/thunar-archive-plugin"
10 WGET_URL="http://archive.xfce.org/src/thunar-plugins/$PACKAGE/${VERSION%.*}/$TARBALL"
12 DEPENDS="thunar"
13 BUILD_DEPENDS="intltool thunar-dev libexo-dev libxfce4ui-dev \
14 xfconf-dev startup-notification-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --libexecdir=/usr/lib \
21 $CONFIGURE_ARGS && \
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/share/locale \
29 $fs/usr/lib/thunarx-2
31 cp -a $_pkg/usr/lib/thunarx-2/*.so* $fs/usr/lib/thunarx-2
32 cp -a $_pkg/usr/share/icons $fs/usr/share
33 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
34 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib
36 # Fix perms
37 chmod 755 $fs/usr/lib/thunar-archive-plugin/*
39 # Cleanup
40 rm -f $fs/usr/lib/thunarx-2/*.*a
41 }