wok annotate xfconf/receipt @ rev 4142

Add: xfconf,xfconf-dev
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Sep 20 13:38:33 2009 +0000 (2009-09-20)
parents
children cd075316eefa
rev   line source
erjo@4142 1 # SliTaz package receipt.
erjo@4142 2
erjo@4142 3 PACKAGE="xfconf"
erjo@4142 4 VERSION="4.6.1"
erjo@4142 5 CATEGORY="x-window"
erjo@4142 6 SHORT_DESC="Xfce Copnfiguration Utility"
erjo@4142 7 MAINTAINER="erjo@slitaz.org"
erjo@4142 8 DEPENDS="gtk+ libxfce4util"
erjo@4142 9 BUILD_DEPENDS="gtk+-dev libxfce4util-dev dbus-dev dbus-glib-dev"
erjo@4142 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@4142 11 WEB_SITE="http://www.xfce.org"
erjo@4142 12 WGET_URL="http://www.p0llux.be/xfce/xfce-$VERSION/src/$TARBALL
erjo@4142 13 http://www.tx-us.xfce.org/archive/xfce-$VERSION/src/$TARBALL"
erjo@4142 14
erjo@4142 15 # Rules to configure and make the package.
erjo@4142 16 compile_rules()
erjo@4142 17 {
erjo@4142 18 cd $src
erjo@4142 19 ./configure --prefix=/usr \
erjo@4142 20 --infodir=/usr/share/info \
erjo@4142 21 --mandir=/usr/share/man $CONFIGURE_ARGS && \
erjo@4142 22 make && make DESTDIR=$PWD/_pkg install
erjo@4142 23 }
erjo@4142 24
erjo@4142 25 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@4142 26 genpkg_rules()
erjo@4142 27 {
erjo@4142 28 mkdir -p $fs/usr \
erjo@4142 29 $fs/usr/lib \
erjo@4142 30 $fs/usr/share/locale
erjo@4142 31
erjo@4142 32
erjo@4142 33 cp -a $_pkg/usr/bin $fs/usr
erjo@4142 34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@4142 35 cp -a $_pkg/usr/libexec $fs/usr
erjo@4142 36 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
erjo@4142 37 cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
erjo@4142 38
erjo@4142 39 strip -s $fs/usr/libexec/*
erjo@4142 40 }