wok annotate xfce-mcs-manager/receipt @ rev 2074

Add: xfce-mcs-manager*, xfce-mcs-plugins, xfce-utils
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Fri Jan 23 23:08:07 2009 +0100 (2009-01-23)
parents
children 422f5813b998
rev   line source
erjo@2074 1 # SliTaz package receipt.
erjo@2074 2
erjo@2074 3 PACKAGE="xfce-mcs-manager"
erjo@2074 4 VERSION="4.4.3"
erjo@2074 5 CATEGORY="x-window"
erjo@2074 6 SHORT_DESC="Xfce settings managers"
erjo@2074 7 MAINTAINER="erjo@slitaz.org"
erjo@2074 8 DEPENDS="libxfcegui4 libxfce4mcs"
erjo@2074 9 BUILD_DEPENDS="libxfcegui4-dev libxfce4mcs-dev"
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 --enable-debug=no $CONFIGURE_ARGS && \
erjo@2074 21 make && make DESTDIR=$PWD/_pkg install
erjo@2074 22 }
erjo@2074 23
erjo@2074 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2074 25 genpkg_rules()
erjo@2074 26 {
erjo@2074 27 mkdir -p $fs/usr \
erjo@2074 28 $fs/usr/share/locale
erjo@2074 29
erjo@2074 30 cp -a $_pkg/usr/bin $fs/usr
erjo@2074 31 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@2074 32 cp -a $_pkg/usr/share/applications $fs/usr/share
erjo@2074 33 cp -a $_pkg/usr/share/icons $fs/usr/share
erjo@2074 34 }
erjo@2074 35