wok-next annotate 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
rev   line source
al@21017 1 # SliTaz package receipt v2.
pascal@4568 2
pascal@4568 3 PACKAGE="gnugo"
pascal@4568 4 VERSION="3.8"
pascal@4568 5 CATEGORY="games"
al@21017 6 SHORT_DESC="A free program that plays the game of Go"
pascal@4568 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15589 8 LICENSE="GPL3"
al@21017 9 WEB_SITE="http://www.gnu.org/software/gnugo/"
al@21017 10
pascal@4568 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@4568 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pascal@15589 13
pascal@4568 14 BUILD_DEPENDS="ncurses-dev"
pascal@4568 15
al@21017 16 compile_rules() {
pascal@4568 17 ./configure \
pascal@4568 18 --prefix=/usr \
pascal@4568 19 --libexecdir=/usr/lib \
pascal@4568 20 --infodir=/usr/share/info \
pascal@4568 21 --mandir=/usr/share/man \
pascal@4568 22 $CONFIGURE_ARGS &&
pascal@4568 23 make &&
pascal@15589 24 make DESTDIR=$DESTDIR install
pascal@4568 25 }
pascal@4568 26
al@21017 27 genpkg_rules() {
pascal@4568 28 mkdir -p $fs/usr
pascal@15589 29 cp -a $install/usr/bin $fs/usr
al@21017 30 DEPENDS="ncurses"
al@21017 31 SUGGESTED="quarry"
pascal@4568 32 }