wok diff cgoban/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
parents
children 59009b1c6878
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/cgoban/receipt	Thu Dec 16 17:16:06 2010 +0000
     1.3 @@ -0,0 +1,33 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="cgoban"
     1.7 +VERSION="1.9.14"
     1.8 +CATEGORY="games"
     1.9 +SHORT_DESC="Large set of go-related services for Unix and X11."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12 +WEB_SITE="http://cgoban1.sourceforge.net/"
    1.13 +WGET_URL="$SF_MIRROR/cgoban1/$TARBALL"
    1.14 +DEPENDS="gtk+"
    1.15 +BUILD_DEPENDS="gtk+-dev"
    1.16 +SUGGESTED="gnugo"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +compile_rules()
    1.20 +{
    1.21 +	cd $src
    1.22 +	./configure --prefix=/usr --infodir=/usr/share/info \
    1.23 +	--mandir=/usr/share/man \
    1.24 +	$CONFIGURE_ARGS &&
    1.25 +	make &&
    1.26 +	make DESTDIR=$PWD/_pkg install
    1.27 +}
    1.28 +
    1.29 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.30 +genpkg_rules()
    1.31 +{
    1.32 +	mkdir -p $fs/usr/bin $fs/usr/share/applications
    1.33 +	cp -a $_pkg/usr/bin/cgoban $fs/usr/bin
    1.34 +	cp stuff/cgoban.desktop $fs/usr/share/applications
    1.35 +}
    1.36 +