wok-undigest diff lxappearance/receipt @ rev 203

vzquota: Add patch file
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Jan 02 22:33:48 2011 +0100 (2011-01-02)
parents 9b24e28d332a
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lxappearance/receipt	Sun Jan 02 22:33:48 2011 +0100
     1.3 @@ -0,0 +1,31 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="lxappearance"
     1.7 +VERSION="git"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="Desktop setting configuration utility from LXDE."
    1.10 +MAINTAINER="gokhlayeh@mailoo.org"
    1.11 +DEPENDS="gtk+"
    1.12 +BUILD_DEPENDS="gtk+-dev gettext xorg-xproto git automake autoconf intltool"
    1.13 +WEB_SITE="http://lxde.org"
    1.14 +
    1.15 +# Rules to configure and make the package.
    1.16 +compile_rules()
    1.17 +{
    1.18 +	git clone git://lxde.git.sourceforge.net/gitroot/lxde/lxappearance $src
    1.19 +	cd $src
    1.20 +	./autogen.sh --prefix=/usr --sysconfdir=/etc
    1.21 +	./configure \
    1.22 +		--prefix=/usr \
    1.23 +		--sysconfdir=/etc \
    1.24 +		$CONFIGURE_ARGS &&
    1.25 +	make &&
    1.26 +	make DESTDIR=$PWD/_pkg install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +    mkdir -p $fs/usr
    1.33 +    cp -a $_pkg/usr/* $fs/usr
    1.34 +}