wok view thunar/receipt @ rev 4981

Up:skype; fix url; improve receipt for tmpdir and RAM size
author Rohit Joshi <jozee@slitaz.org>
date Wed Feb 24 17:21:48 2010 +0000 (2010-02-24)
parents 6ad012ca7518
children 4897058add72
line source
1 # SliTaz package receipt.
3 PACKAGE="thunar"
4 VERSION="1.0.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Thnuar File Manager"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="libpng jpeg libxfce4util dbus libexo startup-notification xfce4-panel"
9 BUILD_DEPENDS="libpng-dev jpeg-dev libxfce4util-dev dbus-dev
10 libexo-dev startup-notification-dev xfce4-panel-dev zlib-dev"
11 SOURCE="Thunar"
12 TARBALL="$SOURCE-$VERSION.tar.bz2"
13 WEB_SITE="http://www.xfce.org"
14 WGET_URL="http://www.tx-us.xfce.org/archive/xfce-4.6.1/src/$TARBALL"
15 TAGS="file-manager file-browser"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure --prefix=/usr \
22 --sysconfdir=/etc \
23 --enable-dbus \
24 --enable-startup-notification \
25 --libexecdir=/usr/lib/$PACKAGE \
26 --enable-debug=no && \
27 make && make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
34 mkdir -p $fs/usr \
35 $fs/usr/share/locale \
36 $fs/usr/lib/thunarx-1
38 cp -a $_pkg/etc $fs/
39 cp -a $_pkg/usr/bin $fs/usr
40 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib
41 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
42 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
43 cp -a $_pkg/usr/lib/thunarx-1/*.so* $fs/usr/lib/thunarx-1
44 cp -a $_pkg/usr/share/applications $fs/usr/share
45 cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
46 cp -a $_pkg/usr/share/icons $fs/usr/share
47 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
48 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
49 cp -a $_pkg/usr/share/thumbnailers $fs/usr/share
50 cp -a $_pkg/usr/share/Thunar $fs/usr/share
51 cp -a $_pkg/usr/share/xfce4 $fs/usr/share
53 # Strip all
54 find $fs/usr/lib/thunar -exec strip -s {} 2> /dev/null \;
55 }