wok view xorg-xsetroot/receipt @ rev 15909

Up: lxpanel (0.6.1) and remove dep on libwnck --> lxpanel-extra (save space on core ISO)
author Christophe Lincoln <pankso@slitaz.org>
date Sat Feb 15 13:07:07 2014 +0100 (2014-02-15)
parents c514cc4854d8
children cf41f989b6d2
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 LICENSE="MIT"
9 SOURCE="xsetroot"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.x.org/"
12 WGET_URL="$XORG_MIRROR/app/$TARBALL"
14 DEPENDS="xorg-libXmu xorg-libXcursor"
15 BUILD_DEPENDS="xorg-libXmu-dev xorg-libXcursor-dev xorg-xbitmaps"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS
25 make
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $install/usr/bin $fs/usr
34 }