wok-current annotate xfce-mcs-plugins/receipt @ rev 3810
Add: couchdb (0.9.1)
author | Claudinei Pereira <claudinei@slitaz.org> |
---|---|
date | Wed Aug 05 21:39:59 2009 +0000 (2009-08-05) |
parents | 4a4f0deaa16b |
children |
rev | line source |
---|---|
erjo@2074 | 1 # SliTaz package receipt. |
erjo@2074 | 2 |
erjo@2074 | 3 PACKAGE="xfce-mcs-plugins" |
erjo@2074 | 4 VERSION="4.4.3" |
erjo@2074 | 5 CATEGORY="x-window" |
erjo@2074 | 6 SHORT_DESC="Xfce setting manager plugins" |
erjo@2074 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@2528 | 8 DEPENDS="libxfcegui4 xfce-mcs-manager xorg-libXrandr xorg-libXdamage" |
erjo@2074 | 9 BUILD_DEPENDS="libxfcegui4-dev xfce-mcs-manager-dev xorg-libXrandr" |
erjo@2074 | 10 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@2074 | 11 WEB_SITE="http://www.xfce.org" |
erjo@2074 | 12 WGET_URL="http://www.p0llux.be/xfce/xfce-4.4.3/src/$TARBALL" |
erjo@2074 | 13 |
erjo@2074 | 14 # Rules to configure and make the package. |
erjo@2074 | 15 compile_rules() |
erjo@2074 | 16 { |
erjo@2074 | 17 cd $src |
erjo@2074 | 18 ./configure --prefix=/usr \ |
erjo@2074 | 19 --infodir=/usr/share/info \ |
erjo@2074 | 20 --disable-debug \ |
erjo@2074 | 21 --enable-xrandr \ |
erjo@2074 | 22 --mandir=/usr/share/man $CONFIGURE_ARGS && \ |
erjo@2074 | 23 make && make DESTDIR=$PWD/_pkg install |
erjo@2074 | 24 } |
erjo@2074 | 25 |
erjo@2074 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@2074 | 27 genpkg_rules() |
erjo@2074 | 28 { |
erjo@2074 | 29 mkdir -p $fs/usr \ |
erjo@2074 | 30 $fs/usr/share/locale \ |
erjo@2074 | 31 $fs/usr/lib/xfce4/mcs-plugins |
erjo@2074 | 32 |
erjo@2074 | 33 |
erjo@2074 | 34 cp -a $_pkg/usr/lib/xfce4/mcs-plugins/*.so* $fs/usr/lib/xfce4/mcs-plugins |
erjo@2074 | 35 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale |
erjo@2074 | 36 cp -a $_pkg/usr/share/applications $fs/usr/share |
erjo@2074 | 37 cp -a $_pkg/usr/share/icons $fs/usr/share |
erjo@2074 | 38 cp -a $_pkg/usr/share/xfce-* $fs/usr/share |
erjo@2074 | 39 } |
erjo@2074 | 40 |