wok-next view cgames/receipt @ rev 20645

Up libjpeg-turbo (1.5.3), libpng16 (1.6.34), libraw (0.18.7), shared-mime-info (1.9), tree (1.7.0), xapian (1.4.5); add time.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue May 01 23:19:32 2018 +0300 (2018-05-01)
parents 8f50006d2661
children d5aab818505e
line source
1 # SliTaz package receipt.
3 PACKAGE="cgames"
4 VERSION="2.2"
5 CATEGORY="games"
6 SHORT_DESC="Games for the Linux Console."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.muppetlabs.com/~breadbox/software/cgames.html"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://www.muppetlabs.com/~breadbox/pub/software/$TARBALL"
13 DEPENDS="ncurses"
14 BUILD_DEPENDS="ncurses-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 sed -i -e 's|install -.*\$|&(destdir)/$|' \
20 -e "s|^prefix|destdir = $DESTDIR\\n&|" \
21 -e 's/g games/g root/' */Makefile.in
22 sed -i 's/.* getline(.*/#define getline mygetline\n&/' */fileread.h
23 ./configure --prefix=/usr \
24 --mandir=/usr/share/man \
25 --datadir=/usr/share \
26 --disable-mouse \
27 --with-ncurses \
28 $CONFIGURE_ARGS &&
29 make &&
30 make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/share
37 cp -a $install/usr/games $fs/usr
38 cp -a $install/usr/share/cblocks $fs/usr/share
39 cp -a $install/usr/share/csokoban $fs/usr/share
41 find $fs -type f -name '*.txt' -exec chmod a-x \{\} \;
42 }