wok diff 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
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/xfconf/receipt	Sun Sep 20 13:38:33 2009 +0000
     1.3 @@ -0,0 +1,40 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="xfconf"
     1.7 +VERSION="4.6.1"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="Xfce Copnfiguration Utility"
    1.10 +MAINTAINER="erjo@slitaz.org"
    1.11 +DEPENDS="gtk+ libxfce4util"
    1.12 +BUILD_DEPENDS="gtk+-dev libxfce4util-dev dbus-dev dbus-glib-dev"
    1.13 +TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.14 +WEB_SITE="http://www.xfce.org"
    1.15 +WGET_URL="http://www.p0llux.be/xfce/xfce-$VERSION/src/$TARBALL
    1.16 + http://www.tx-us.xfce.org/archive/xfce-$VERSION/src/$TARBALL"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +compile_rules()
    1.20 +{
    1.21 +	cd $src
    1.22 +	./configure --prefix=/usr \
    1.23 +		--infodir=/usr/share/info \
    1.24 +		--mandir=/usr/share/man $CONFIGURE_ARGS && \
    1.25 +	make && make DESTDIR=$PWD/_pkg install
    1.26 +}
    1.27 +
    1.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.29 +genpkg_rules()
    1.30 +{
    1.31 +	mkdir -p $fs/usr \
    1.32 +		$fs/usr/lib \
    1.33 +		$fs/usr/share/locale 
    1.34 +		
    1.35 +		
    1.36 +	cp -a $_pkg/usr/bin $fs/usr
    1.37 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.38 +	cp -a $_pkg/usr/libexec $fs/usr
    1.39 +	cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
    1.40 +	cp -a $_pkg/usr/share/dbus-1 $fs/usr/share
    1.41 +	
    1.42 +	strip -s $fs/usr/libexec/*
    1.43 +}