wok view quarry/receipt @ rev 15854

twisted: Add zopeinterface to build depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Jan 28 05:56:16 2014 +0000 (2014-01-28)
parents de49ec9d5be3
children 533c0cab6960
line source
1 # SliTaz package receipt.
3 PACKAGE="quarry"
4 VERSION="0.2.0"
5 CATEGORY="games"
6 SHORT_DESC="multi-purpose GUI for Go, Amazons and Reversi."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://home.gna.org/quarry/"
11 WGET_URL="http://download.gna.org/$PACKAGE/$TARBALL"
12 SUGGESTED="gnugo"
14 DEPENDS="gtk+ librsvg libgsf xcb-util"
15 BUILD_DEPENDS="gtk+-dev librsvg-dev libgsf"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 sed -i 's/mozilla/firefox/' src/gui-gtk/gtk-help.c
22 ./configure \
23 --prefix=/usr \
24 --libexecdir=/usr/lib \
25 --infodir=/usr/share/info \
26 --mandir=/usr/share/man \
27 --enable-sgf-utils \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/usr $fs
37 }