wok view xorg-xcursorgen/receipt @ rev 7245

Changed url address in coreutils so it will work.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Nov 13 22:12:32 2010 +0000 (2010-11-13)
parents 170168df8ad1
children c514cc4854d8
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 libpng zlib"
9 SOURCE="xcursorgen"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.x.org/"
12 WGET_URL="$XORG_MIRROR/app/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --mandir=/usr/share/man \
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 }