wok-undigest annotate guichan/receipt @ rev 173

Removed hydrogen and depends. There in wok now.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Oct 19 13:59:15 2010 +0000 (2010-10-19)
parents
children
rev   line source
devl547@111 1 # SliTaz package receipt.
devl547@111 2
devl547@111 3 PACKAGE="guichan"
devl547@111 4 VERSION="0.8.2"
devl547@111 5 CATEGORY="development"
devl547@111 6 SHORT_DESC="a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL"
devl547@111 7 MAINTAINER="devl547@gmail.com"
devl547@111 8 DEPENDS="libsdl libsdl-image"
devl547@111 9 BUILD_DEPENDS="libsdl-dev libsdl-image-dev"
devl547@111 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
devl547@111 11 WEB_SITE="http://guichan.sourceforge.net/"
devl547@111 12 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
devl547@111 13
devl547@111 14 # Rules to configure and make the package.
devl547@111 15 compile_rules()
devl547@111 16 {
devl547@111 17 cd $src
devl547@111 18 ./configure --prefix=/usr $CONFIGURE_ARGS \
devl547@111 19 --enable-sdl &&
devl547@111 20 make &&
devl547@111 21 make DESTDIR=$PWD/_pkg install
devl547@111 22 }
devl547@111 23
devl547@111 24 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@111 25 genpkg_rules()
devl547@111 26 {
devl547@111 27 mkdir -p $fs/usr/lib
devl547@111 28 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
devl547@111 29 }