wok view hsetroot/receipt @ rev 3679

Fix: ocsinventory-agent. Add Tazpkg.pm. Fix filesystem reports.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Jul 12 23:18:03 2009 +0200 (2009-07-12)
parents 2b7d1b0c7352
children c6ccd6bc43b1
line source
1 # SliTaz package receipt.
3 PACKAGE="hsetroot"
4 VERSION="1.0.2"
5 CATEGORY="x-window"
6 SHORT_DESC="Tool to set desktop wallpaper."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="imlib2 libpng freetype xorg-libX11 xorg-libXau xorg-libXdmcp \
9 xorg-libXext"
10 BUILD_DEPENDS="imlib2-dev libpng-dev"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://thegraveyard.org/hsetroot.php"
13 WGET_URL="http://thegraveyard.org/files/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
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 }