wok-next view gnugo/receipt @ rev 21018
Nasty typo broke the cooker
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Wed Oct 17 03:59:24 2018 +0300 (2018-10-17) |
parents | d1c17bd2c2bc |
children | d5aab818505e |
line source
1 # SliTaz package receipt v2.
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 LICENSE="GPL3"
9 WEB_SITE="http://www.gnu.org/software/gnugo/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="ncurses-dev"
16 compile_rules() {
17 ./configure \
18 --prefix=/usr \
19 --libexecdir=/usr/lib \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 genpkg_rules() {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 DEPENDS="ncurses"
31 SUGGESTED="quarry"
32 }