wok annotate thunar/receipt @ rev 7547

Up: clutter-gtk to 0.10.8.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Dec 07 21:07:29 2010 +0000 (2010-12-07)
parents 158c8f134538
children 99fb3f988136
rev   line source
erjo@4144 1 # SliTaz package receipt.
erjo@4144 2
erjo@4144 3 PACKAGE="thunar"
erjo@5830 4 VERSION="1.0.2"
erjo@4144 5 CATEGORY="x-window"
erjo@4144 6 SHORT_DESC="Thnuar File Manager"
erjo@4144 7 MAINTAINER="erjo@slitaz.org"
pascal@5007 8 DEPENDS="libpng jpeg libxfce4util dbus libexo startup-notification xfce4-panel \
erjo@5210 9 gamin pcre libexif"
erjo@4144 10 BUILD_DEPENDS="libpng-dev jpeg-dev libxfce4util-dev dbus-dev
erjo@4144 11 libexo-dev startup-notification-dev xfce4-panel-dev zlib-dev"
erjo@4144 12 SOURCE="Thunar"
erjo@4144 13 TARBALL="$SOURCE-$VERSION.tar.bz2"
erjo@4144 14 WEB_SITE="http://www.xfce.org"
erjo@5830 15 WGET_URL="http://www.tx-us.xfce.org/archive/xfce-4.6.2/src/$TARBALL"
jozee@4973 16 TAGS="file-manager file-browser"
erjo@4144 17
erjo@4144 18 # Rules to configure and make the package.
erjo@4144 19 compile_rules()
erjo@4144 20 {
erjo@4144 21 cd $src
erjo@4144 22 ./configure --prefix=/usr \
erjo@4144 23 --sysconfdir=/etc \
erjo@4144 24 --enable-dbus \
erjo@4144 25 --enable-startup-notification \
pascal@4218 26 --libexecdir=/usr/lib/$PACKAGE \
erjo@5210 27 --disable-gconf \
erjo@5210 28 --disable-gnome-thumbnailers \
erjo@4144 29 --enable-debug=no && \
erjo@4144 30 make && make DESTDIR=$PWD/_pkg install
erjo@4144 31 }
erjo@4144 32
erjo@4144 33 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4144 34 genpkg_rules()
erjo@4144 35 {
erjo@4144 36
erjo@4144 37 mkdir -p $fs/usr \
erjo@4144 38 $fs/usr/share/locale \
erjo@4144 39 $fs/usr/lib/thunarx-1
erjo@4144 40
erjo@4144 41 cp -a $_pkg/etc $fs/
erjo@4144 42 cp -a $_pkg/usr/bin $fs/usr
pascal@4218 43 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib
erjo@4144 44 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@4144 45 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@4144 46 cp -a $_pkg/usr/lib/thunarx-1/*.so* $fs/usr/lib/thunarx-1
erjo@4144 47 cp -a $_pkg/usr/share/applications $fs/usr/share
erjo@4144 48 cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
erjo@4144 49 cp -a $_pkg/usr/share/icons $fs/usr/share
erjo@4144 50 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@4144 51 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
erjo@4144 52 cp -a $_pkg/usr/share/thumbnailers $fs/usr/share
erjo@4144 53 cp -a $_pkg/usr/share/Thunar $fs/usr/share
erjo@4144 54 cp -a $_pkg/usr/share/xfce4 $fs/usr/share
erjo@4874 55
erjo@4874 56 # Strip all
erjo@4874 57 find $fs/usr/lib/thunar -exec strip -s {} 2> /dev/null \;
erjo@4144 58 }
erjo@4144 59