wok-next annotate gnugo/receipt @ rev 21531

updated busybox (1.27.2 -> 1.31.1)
author Hans-G?nter Theisgen
date Sat Jun 20 17:14:40 2020 +0100 (2020-06-20)
parents f48456621a9d
children
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 &&
al@21020 24 make DESTDIR=$install 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 }