wok-undigest view lxappearance2/receipt @ rev 157

Add: lxappearance2
author Antoine Bodin <gokhlayeh@mailoo.org>
date Thu Aug 05 23:44:43 2010 +0200 (2010-08-05)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="lxappearance2"
4 VERSION="beta"
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/lxappearance2 $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/bin $fs/usr
31 cp -a $_pkg/usr/* $fs/usr
32 }