wok-current annotate xfce4-settings/receipt @ rev 4143
Add: xfce4-settings
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Sun Sep 20 13:39:14 2009 +0000 (2009-09-20) |
parents | |
children | f165fed5166c |
rev | line source |
---|---|
erjo@4143 | 1 # SliTaz package receipt. |
erjo@4143 | 2 |
erjo@4143 | 3 PACKAGE="xfce4-settings" |
erjo@4143 | 4 VERSION="4.6.1" |
erjo@4143 | 5 CATEGORY="x-window" |
erjo@4143 | 6 SHORT_DESC="Xfce Settings Manager" |
erjo@4143 | 7 MAINTAINER="erjo@slitaz.org" |
erjo@4143 | 8 DEPENDS="libxfce4util libxfcegui4 libexo xfconf libglade dbus-glib xorg-libXi xorg-libXrandr" |
erjo@4143 | 9 BUILD_DEPENDS="libxfce4util-dev libxfcegui4-dev libexo-dev xfconf-dev libglade-dev |
erjo@4143 | 10 dbus-glib-dev xorg-libXi-dev xorg-libXrandr-dev" |
erjo@4143 | 11 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@4143 | 12 WEB_SITE="http://www.xfce.org/" |
erjo@4143 | 13 WGET_URL="http://www.p0llux.be/xfce/xfce-$VERSION/src/$TARBALL |
erjo@4143 | 14 http://www.p0llux.be/xfce/xfce-$VERSION/src/$TARBALL" |
erjo@4143 | 15 |
erjo@4143 | 16 # Rules to configure and make the package. |
erjo@4143 | 17 compile_rules() |
erjo@4143 | 18 { |
erjo@4143 | 19 patch -p0 -i stuff/xsettings.xml.u |
erjo@4143 | 20 cd $src |
erjo@4143 | 21 ./configure --prefix=/usr \ |
erjo@4143 | 22 --sysconfdir=/etc \ |
erjo@4143 | 23 --enable-xcursor \ |
erjo@4143 | 24 --enable-libnotify \ |
erjo@4143 | 25 --enable-xrandr \ |
erjo@4143 | 26 --enable-debug=no \ |
erjo@4143 | 27 --mandir=/usr/share/man $CONFIGURE_ARGS && \ |
erjo@4143 | 28 make && make DESTDIR=$PWD/_pkg install |
erjo@4143 | 29 } |
erjo@4143 | 30 |
erjo@4143 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@4143 | 32 genpkg_rules() |
erjo@4143 | 33 { |
erjo@4143 | 34 mkdir -p $fs/usr \ |
erjo@4143 | 35 $fs/usr/share/locale |
erjo@4143 | 36 |
erjo@4143 | 37 cp -a $_pkg/etc $fs/ |
erjo@4143 | 38 cp -a $_pkg/usr/bin $fs/usr |
erjo@4143 | 39 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
erjo@4143 | 40 cp -a $_pkg/usr/share/applications $fs/usr/share |
erjo@4143 | 41 } |
erjo@4143 | 42 |