wok view thunar-vfs/receipt @ rev 16329

ARM: add xorg-xprop - Used in the new SliTaz Tiny/Touch Screen (sts) desktop
author Christophe Lincoln <pankso@slitaz.org>
date Thu Apr 10 19:50:37 2014 +0200 (2014-04-10)
parents 73641efed1cc
children 5d53e8ccbc8d
line source
1 # SliTaz package receipt.
3 PACKAGE="thunar-vfs"
4 VERSION="1.2.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Thunar File Manager Libraries"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="LGPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.xfce.org"
11 WGET_URL="http://archive.xfce.org/xfce/4.8/src/$TARBALL"
12 TAGS="file-manager file-browser"
14 DEPENDS="libpng jpeg libxfce4util dbus startup-notification xfce4-panel \
15 gamin pcre libexif util-linux-uuid-dev hal"
16 BUILD_DEPENDS="libpng-dev jpeg-dev libxfce4util-dev dbus-dev
17 startup-notification-dev xfce4-panel-dev zlib-dev intltool libexo-dev dbus-glib-dev \
18 util-linux-uuid-dev hal-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 cd $src
24 ./configure --prefix=/usr \
25 --sysconfdir=/etc \
26 --enable-dbus \
27 --enable-startup-notification \
28 --disable-gnome-thumbnailers \
29 --enable-debug=no \
30 $CONFIGURE_ARGS && \
31 make && make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
38 mkdir -p $fs/usr \
39 $fs/usr/share/locale \
40 $fs/usr/lib/ \
41 $fs/usr/share
43 cp -a $install/usr/lib/*.so* $fs/usr/lib
44 cp -a $install/usr/lib/thunar-vfs-1 $fs/usr/lib
46 cp -a $install/usr/share/locale/fr $fs/usr/share/locale
47 cp -a $install/usr/share/thumbnailers $fs/usr/share
49 # Strip all
50 find $fs/usr/lib -exec strip -s {} 2> /dev/null \;
51 }