wok view xfdesktop/receipt @ rev 4054

Add: viewnior (Light image viewer)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Sep 09 21:49:39 2009 +0200 (2009-09-09)
parents
children 2eb4cda2e8eb
line source
1 # SliTaz package receipt.
3 PACKAGE="xfdesktop"
4 VERSION="4.4.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce panel"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="xorg-libSM xfce-mcs-manager libxfce4util libxfcegui4 libxfce4mcs Thunar libexo"
9 BUILD_DEPENDS="xorg-libSM-dev libxfce4util-dev xfce-mcs-manager-dev Thunar-dev libexo-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.xfce.org/"
12 WGET_URL="http://www.p0llux.be/xfce/xfce-4.4.3/src/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr \
19 --sysconfdir=/etc \
20 --enable-exo \
21 --enable-thunarx \
22 --mandir=/usr/share/man $CONFIGURE_ARGS && \
23 make && make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr \
30 $fs/usr/share/locale \
31 $fs/usr/share/xfce4 \
32 $fs/usr/lib/xfce4/mcs-plugins \
33 $fs/usr/lib/xfce4/panel-plugins
35 cp -a $_pkg/etc $fs/
36 cp -a $_pkg/usr/bin $fs/usr
37 cp -a $_pkg/usr/libexec $fs/usr
38 cp -a $_pkg/usr/lib $fs/usr
39 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
40 cp -a $_pkg/usr/share/applications $fs/usr/share
41 cp -a $_pkg/usr/share/icons $fs/usr/share
42 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
43 cp -a $_pkg/usr/share/xfce4-* $fs/usr/share
44 cp -a $_pkg/usr/share/xfce4/panel-plugins $fs/usr/share
45 cp -a $_pkg/usr/share/xfce4/backdrops $fs/usr/share
47 # Remove unnessecarry files
48 find $fs/usr/lib -name "*.*a" -exec rm -f {} \;
50 }