wok view xbill/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
parents
children 4efb2cc82017
line source
1 # SliTaz package receipt.
3 PACKAGE="xbill"
4 VERSION="2.1"
5 CATEGORY="games"
6 SHORT_DESC="Xbill is a game that tests your reflexes as you seek and destroy all forms of Bill."
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="gtk+ xorg-libXaw"
9 BUILD_DEPENDS="gtk+-dev xorg-libXaw-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.xbill.org/"
12 WGET_URL="$WEB_SITE/download/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 --localstatedir=/var/games \
23 --enable-gtk \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/share/xbill $fs/usr/share
34 }