wok view xorg-xsetroot/receipt @ rev 7753

fcitx:change default config
author fireflyoo <lufeng369@gmail.com>
date Tue Dec 21 15:30:57 2010 +0800 (2010-12-21)
parents 07ae722ec64e
children c514cc4854d8
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xsetroot"
4 VERSION="1.1.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Xsetroot is a tool to configure X root background color."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg"
9 BUILD_DEPENDS="xorg-xbitmaps"
10 SOURCE="xsetroot"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://www.x.org/"
13 WGET_URL="$XORG_MIRROR/app/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS
23 make
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $_pkg/usr/bin $fs/usr
32 }