wok diff guichan/receipt @ rev 17317

Add tix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Nov 04 08:58:28 2014 +0100 (2014-11-04)
parents b165a9b3b8c3
children 34df176312fc
line diff
     1.1 --- a/guichan/receipt	Thu Nov 03 23:25:32 2011 +0100
     1.2 +++ b/guichan/receipt	Tue Nov 04 08:58:28 2014 +0100
     1.3 @@ -5,12 +5,14 @@
     1.4  CATEGORY="development"
     1.5  SHORT_DESC="a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL"
     1.6  MAINTAINER="devl547@gmail.com"
     1.7 -DEPENDS="libsdl libsdl-image"
     1.8 -BUILD_DEPENDS="libsdl-dev libsdl-image-dev"
     1.9 +LICENSE="BSD"
    1.10  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.11  WEB_SITE="http://guichan.sourceforge.net/"
    1.12  WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
    1.13  
    1.14 +DEPENDS="libsdl libsdl-image"
    1.15 +BUILD_DEPENDS="libsdl-dev libsdl-image-dev"
    1.16 +
    1.17  # Rules to configure and make the package.
    1.18  compile_rules()
    1.19  {
    1.20 @@ -18,12 +20,12 @@
    1.21  	./configure --prefix=/usr $CONFIGURE_ARGS \
    1.22  	--enable-sdl &&
    1.23  	make &&
    1.24 -	make DESTDIR=$PWD/_pkg install
    1.25 +	make DESTDIR=$DESTDIR install
    1.26  }
    1.27  
    1.28  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.29  genpkg_rules()
    1.30  {
    1.31  	mkdir -p $fs/usr/lib
    1.32 -	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.33 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.34  }