wok view xbill/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 4efb2cc82017
children 83b97236db32
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 LICENSE="GPL"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.xbill.org/"
11 WGET_URL="$WEB_SITE/download/$TARBALL"
13 DEPENDS="gtk+ xorg-libXaw lesstif"
14 BUILD_DEPENDS="gtk+-dev xorg-libXaw-dev lesstif-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 --localstatedir=/var/games \
25 --enable-gtk \
26 $CONFIGURE_ARGS &&
27 make && make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/share/xbill $fs/usr/share
36 }