wok annotate gnuchess/receipt @ rev 9225

busybox: fix cksum applet
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 11 18:53:09 2011 +0100 (2011-03-11)
parents 31ba4f705fa2
children 0bd1af3d9d21
rev   line source
pascal@4567 1 # SliTaz package receipt.
pascal@4567 2
pascal@4567 3 PACKAGE="gnuchess"
slaxemulator@8343 4 VERSION="5.08"
pascal@4567 5 CATEGORY="games"
pascal@4567 6 SHORT_DESC="GNU Chess lets most modern computers play a full game of chess."
pascal@4567 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@4567 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@4567 9 WEB_SITE="http://www.gnu.org/software/chess/chess.html"
pascal@4567 10 WGET_URL="$GNU_MIRROR/chess/$TARBALL"
pascal@4567 11 DEPENDS="ncurses readline"
pascal@4567 12 BUILD_DEPENDS="ncurses-dev readline-dev"
pascal@4567 13
pascal@4567 14 # Rules to configure and make the package.
pascal@4567 15 compile_rules()
pascal@4567 16 {
pascal@4567 17 cd $src
pascal@4567 18 find -name '*.c' | xargs sed -i 's/getline/get_line/g' src/common.h
pascal@4567 19 sed -i 's/input_thread/static_input_thread/' src/input.c
pascal@4567 20 ./configure \
pascal@4567 21 --prefix=/usr \
pascal@4567 22 --libexecdir=/usr/lib \
pascal@4567 23 --infodir=/usr/share/info \
pascal@4567 24 --mandir=/usr/share/man \
pascal@4567 25 $CONFIGURE_ARGS &&
pascal@4567 26 make &&
slaxemulator@8349 27 make -j1 DESTDIR=$PWD/_pkg install
pascal@4567 28 }
pascal@4567 29
pascal@4567 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@4567 31 genpkg_rules()
pascal@4567 32 {
pascal@4567 33 cp -a $_pkg/usr $fs
pascal@4567 34 }