wok-stable view thunar/receipt @ rev 7674
Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Thu Dec 16 17:16:06 2010 +0000 (2010-12-16) |
parents | 158c8f134538 |
children | 99fb3f988136 |
line source
1 # SliTaz package receipt.
3 PACKAGE="thunar"
4 VERSION="1.0.2"
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 gamin pcre libexif"
10 BUILD_DEPENDS="libpng-dev jpeg-dev libxfce4util-dev dbus-dev
11 libexo-dev startup-notification-dev xfce4-panel-dev zlib-dev"
12 SOURCE="Thunar"
13 TARBALL="$SOURCE-$VERSION.tar.bz2"
14 WEB_SITE="http://www.xfce.org"
15 WGET_URL="http://www.tx-us.xfce.org/archive/xfce-4.6.2/src/$TARBALL"
16 TAGS="file-manager file-browser"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure --prefix=/usr \
23 --sysconfdir=/etc \
24 --enable-dbus \
25 --enable-startup-notification \
26 --libexecdir=/usr/lib/$PACKAGE \
27 --disable-gconf \
28 --disable-gnome-thumbnailers \
29 --enable-debug=no && \
30 make && make DESTDIR=$PWD/_pkg install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
37 mkdir -p $fs/usr \
38 $fs/usr/share/locale \
39 $fs/usr/lib/thunarx-1
41 cp -a $_pkg/etc $fs/
42 cp -a $_pkg/usr/bin $fs/usr
43 cp -a $_pkg/usr/lib/$PACKAGE $fs/usr/lib
44 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
45 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
46 cp -a $_pkg/usr/lib/thunarx-1/*.so* $fs/usr/lib/thunarx-1
47 cp -a $_pkg/usr/share/applications $fs/usr/share
48 cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
49 cp -a $_pkg/usr/share/icons $fs/usr/share
50 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
51 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
52 cp -a $_pkg/usr/share/thumbnailers $fs/usr/share
53 cp -a $_pkg/usr/share/Thunar $fs/usr/share
54 cp -a $_pkg/usr/share/xfce4 $fs/usr/share
56 # Strip all
57 find $fs/usr/lib/thunar -exec strip -s {} 2> /dev/null \;
58 }