wok view xorg-xsetroot/receipt @ rev 4230
Fix: patch xfe to build with gcc-4.x
| author | Christophe Lincoln <pankso@slitaz.org> | 
|---|---|
| date | Thu Sep 24 15:03:32 2009 +0200 (2009-09-24) | 
| 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 }