wok view xorg-xsetroot/receipt @ rev 5814

libassuan: update BUILD_DEPENDS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jul 12 21:58:39 2010 +0200 (2010-07-12)
parents
children 07ae722ec64e
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xsetroot"
4 VERSION="1.0.2"
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.gz"
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 }