wok view gnugo/receipt @ rev 14080

udisks: update deps - busybox mount does not understand the -o uhelper=udisks2 spawned by udisks
author ernia <monghitri@aruba.it>
date Fri Feb 22 17:25:25 2013 +0000 (2013-02-22)
parents dbf67aee2761
children d1c17bd2c2bc
line source
1 # SliTaz package receipt.
3 PACKAGE="gnugo"
4 VERSION="3.8"
5 CATEGORY="games"
6 SHORT_DESC="A free program that plays the game of Go."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnu.org/software/gnugo/"
10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
11 DEPENDS="ncurses"
12 BUILD_DEPENDS="ncurses-dev"
13 SUGGESTED="quarry"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --libexecdir=/usr/lib \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr
33 cp -a $_pkg/usr/bin $fs/usr
34 }