wok annotate guichan/receipt @ rev 24021

busybox: fix busybox-1.31-stat.u
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 06 18:53:34 2021 +0000 (2021-03-06)
parents de49f29b101e
children b9659e3c2111
rev   line source
pascal@11222 1 # SliTaz package receipt.
pascal@11222 2
pascal@11222 3 PACKAGE="guichan"
pascal@11222 4 VERSION="0.8.2"
pascal@11222 5 CATEGORY="development"
pascal@18417 6 SHORT_DESC="A portable C++ GUI library designed for games using Allegro, SDL and/or OpenGL"
pascal@11222 7 MAINTAINER="devl547@gmail.com"
pascal@15600 8 LICENSE="BSD"
pascal@11222 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@11222 10 WEB_SITE="http://guichan.sourceforge.net/"
pascal@11222 11 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
pascal@11222 12
pascal@15600 13 DEPENDS="libsdl libsdl-image"
pascal@18417 14 BUILD_DEPENDS="libsdl-dev libsdl-image-dev mesa-dev"
pascal@15600 15
pascal@11222 16 # Rules to configure and make the package.
pascal@11222 17 compile_rules()
pascal@11222 18 {
pascal@11222 19 ./configure --prefix=/usr $CONFIGURE_ARGS \
pascal@11222 20 --enable-sdl &&
pascal@11222 21 make &&
pascal@15600 22 make DESTDIR=$DESTDIR install
pascal@11222 23 }
pascal@11222 24
pascal@11222 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11222 26 genpkg_rules()
pascal@11222 27 {
pascal@11222 28 mkdir -p $fs/usr/lib
pascal@15600 29 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@11222 30 }