wok view xorg-xcursorgen/receipt @ rev 10460

tcpdump: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 25 11:19:32 2011 +0200 (2011-05-25)
parents 07ae722ec64e
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-xcursorgen"
4 VERSION="1.0.4"
5 CATEGORY="x-window"
6 SHORT_DESC="X cursor generator."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="xorg-libX11 xorg-libXcursor libpng"
9 BUILD_DEPENDS="xorg-libX11-dev xorg-libXcursor-dev libpng-dev"
10 SOURCE="xcursorgen"
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 }