wok annotate thunar-vfs/receipt @ rev 10019

thunar-vfs: fix bdeps
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu May 19 12:30:41 2011 +0200 (2011-05-19)
parents 811617bdf56d
children 444061e56c53
rev   line source
erjo@8058 1 # SliTaz package receipt.
erjo@8058 2
erjo@8058 3 PACKAGE="thunar-vfs"
erjo@8058 4 VERSION="1.2.0"
erjo@8058 5 CATEGORY="x-window"
erjo@8058 6 SHORT_DESC="Thnuar File Manager Libraries"
erjo@8058 7 MAINTAINER="erjo@slitaz.org"
erjo@8058 8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@8058 9 WEB_SITE="http://www.xfce.org"
erjo@8058 10 WGET_URL="http://archive.xfce.org/xfce/4.8/src/$TARBALL"
erjo@8058 11 TAGS="file-manager file-browser"
erjo@8058 12
erjo@10019 13 DEPENDS="libpng jpeg libxfce4util dbus startup-notification xfce4-panel \
erjo@10019 14 gamin pcre libexif util-linux-ng-uuid-dev hal"
erjo@10019 15 BUILD_DEPENDS="libpng-dev jpeg-dev libxfce4util-dev dbus-dev
erjo@10019 16 startup-notification-dev xfce4-panel-dev zlib-dev intltool libexo-dev dbus-glib-dev \
erjo@10019 17 util-linux-ng-uuid-dev hal-dev"
erjo@10019 18
erjo@8058 19 # Rules to configure and make the package.
erjo@8058 20 compile_rules()
erjo@8058 21 {
erjo@8058 22 cd $src
erjo@8058 23 ./configure --prefix=/usr \
erjo@8058 24 --sysconfdir=/etc \
erjo@8058 25 --enable-dbus \
erjo@8058 26 --enable-startup-notification \
erjo@8058 27 --disable-gnome-thumbnailers \
erjo@8058 28 --enable-debug=no && \
erjo@10019 29 make && make DESTDIR=$DESTDIR install
erjo@8058 30 }
erjo@8058 31
erjo@8058 32 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@8058 33 genpkg_rules()
erjo@8058 34 {
erjo@8058 35
erjo@8058 36 mkdir -p $fs/usr \
erjo@8058 37 $fs/usr/share/locale \
erjo@8058 38 $fs/usr/lib/ \
erjo@8058 39 $fs/usr/share
erjo@8058 40
erjo@8058 41 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@8058 42 cp -a $_pkg/usr/lib/thunar-vfs-1 $fs/usr/lib
erjo@8058 43
erjo@8058 44 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@8058 45 cp -a $_pkg/usr/share/thumbnailers $fs/usr/share
erjo@8058 46
erjo@8058 47 # Strip all
erjo@8058 48 find $fs/usr/lib -exec strip -s {} 2> /dev/null \;
erjo@8058 49 }
erjo@8058 50