# SliTaz package receipt. PACKAGE="guichan" VERSION="0.8.2" CATEGORY="development" SHORT_DESC="a portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL" MAINTAINER="devl547@gmail.com" DEPENDS="libsdl libsdl-image" BUILD_DEPENDS="libsdl-dev libsdl-image-dev" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://guichan.sourceforge.net/" WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL" # Rules to configure and make the package. compile_rules() { cd $src ./configure --prefix=/usr $CONFIGURE_ARGS \ --enable-sdl && make && make DESTDIR=$PWD/_pkg install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib cp -a $_pkg/usr/lib/*.so* $fs/usr/lib }