wok-undigest view 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 source
1 # SliTaz package receipt.
3 PACKAGE="lxappearance"
4 VERSION="git"
5 CATEGORY="x-window"
6 SHORT_DESC="Desktop setting configuration utility from LXDE."
7 MAINTAINER="gokhlayeh@mailoo.org"
8 DEPENDS="gtk+"
9 BUILD_DEPENDS="gtk+-dev gettext xorg-xproto git automake autoconf intltool"
10 WEB_SITE="http://lxde.org"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 git clone git://lxde.git.sourceforge.net/gitroot/lxde/lxappearance $src
16 cd $src
17 ./autogen.sh --prefix=/usr --sysconfdir=/etc
18 ./configure \
19 --prefix=/usr \
20 --sysconfdir=/etc \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/* $fs/usr
31 }