wok-next view guichan/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents e545e47edffa
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="guichan"
4 VERSION="0.8.2"
5 CATEGORY="development"
6 SHORT_DESC="A portable C++ GUI library designed for games using Allegro, SDL \
7 and/or OpenGL"
8 MAINTAINER="devl547@gmail.com"
9 LICENSE="BSD"
10 WEB_SITE="http://guichan.sourceforge.net/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
15 BUILD_DEPENDS="libsdl-dev libsdl-image-dev mesa-dev"
16 SPLIT="guichan-dev"
18 compile_rules() {
19 ./configure \
20 --enable-sdl \
21 $CONFIGURE_ARGS &&
22 fix libtool &&
23 make &&
24 make DESTDIR=$DESTDIR install
25 }
27 genpkg_rules() {
28 case $PACKAGE in
29 guichan)
30 copy @std
31 DEPENDS="libsdl libsdl-image"
32 ;;
33 *-dev)
34 copy @dev
35 ;;
36 esac
37 }