wok-next annotate guichan/receipt @ rev 21500

updated asunder (2.9.3 -> 2.9.6)
author Hans-G?nter Theisgen
date Fri Jun 19 06:47:46 2020 +0100 (2020-06-19)
parents d5aab818505e
children
rev   line source
al@20459 1 # SliTaz package receipt v2.
pascal@11222 2
pascal@11222 3 PACKAGE="guichan"
pascal@11222 4 VERSION="0.8.2"
pascal@11222 5 CATEGORY="development"
al@20575 6 SHORT_DESC="A portable C++ GUI library designed for games using Allegro, SDL \
al@20575 7 and/or OpenGL"
pascal@11222 8 MAINTAINER="devl547@gmail.com"
pascal@15600 9 LICENSE="BSD"
al@20459 10 WEB_SITE="http://guichan.sourceforge.net/"
al@20459 11
pascal@11222 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@11222 13 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
pascal@11222 14
al@21087 15 BUILD_DEPENDS="sdl-dev sdl-image-dev mesa-dev"
al@21020 16 SPLIT="$PACKAGE-dev"
pascal@15600 17
al@20459 18 compile_rules() {
al@20459 19 ./configure \
al@20459 20 --enable-sdl \
al@20459 21 $CONFIGURE_ARGS &&
al@20575 22 fix libtool &&
pascal@11222 23 make &&
al@21020 24 make DESTDIR=$install install
pascal@11222 25 }
pascal@11222 26
al@20459 27 genpkg_rules() {
al@20459 28 case $PACKAGE in
al@20459 29 guichan)
al@20550 30 copy @std
al@21087 31 DEPENDS="sdl sdl-image"
al@20459 32 ;;
al@20459 33 *-dev)
al@20550 34 copy @dev
al@20459 35 ;;
al@20459 36 esac
pascal@11222 37 }