wok view xfce4-session/receipt @ rev 2112

Add: aspell-pt_PT
author Paul Issott <paul@slitaz.org>
date Thu Jan 29 20:13:42 2009 +0000 (2009-01-29)
parents
children 917290e1ad30
line source
1 # SliTaz package receipt.
3 PACKAGE="xfce4-session"
4 VERSION="4.4.3"
5 CATEGORY="x-window"
6 SHORT_DESC="Xfce session manager"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="xorg-libSM xfce-mcs-manager libxfce4util libxfcegui4 libxfce4mcs xfce4-panel"
9 BUILD_DEPENDS="xorg-libSM-dev libxfce4util-dev xfce-mcs-manager-dev xorg-iceauth"
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-dbus \
21 --enable-final \
22 --disable-gnome \
23 --mandir=/usr/share/man $CONFIGURE_ARGS && \
24 make && make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr \
31 $fs/usr/share/locale \
32 $fs/usr/lib/xfce4/mcs-plugins
34 cp -a $_pkg/etc $fs/
35 cp -a $_pkg/usr/bin $fs/usr
36 cp -a $_pkg/usr/libexec $fs/usr
37 cp -a $_pkg/usr/lib $fs/usr
38 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
39 cp -a $_pkg/usr/share/applications $fs/usr/share
40 cp -a $_pkg/usr/share/icons $fs/usr/share
41 cp -a $_pkg/usr/share/themes $fs/usr/share
42 cp -a $_pkg/usr/share/xfce4 $fs/usr/share
44 # Remove unecessary files
45 find $fs/ -name "*.*a" -exec rm -f {} \;
46 rm -rf $fs/usr/lib/pkgconfig
47 # Remove SVG icons
48 rm -rf $fs/usr/share/icons/hicolor/scalable
49 }