wok view gnugo/receipt @ rev 19467

slitaz-i18n: give translations from yad-gtk2 package.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 25 01:31:43 2016 +0300 (2016-10-25)
parents de49ec9d5be3
children 71360a13cd94
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 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/gnugo/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 SUGGESTED="quarry"
14 DEPENDS="ncurses"
15 BUILD_DEPENDS="ncurses-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --libexecdir=/usr/lib \
24 --infodir=/usr/share/info \
25 --mandir=/usr/share/man \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
35 cp -a $install/usr/bin $fs/usr
36 }