wok view gambas2/receipt @ rev 18163

gdb-python: add python stuff
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jun 26 09:27:39 2015 +0200 (2015-06-26)
parents 125e7c0ae73c
children feb2e0c63d21
line source
1 # SliTaz package receipt.
3 PACKAGE="gambas2"
4 VERSION="2.24.0"
5 CATEGORY="development"
6 SHORT_DESC="Free development environment based on a Basic interpreter"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://gambas.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/gambas/$TARBALL"
12 TAGS="interpreter basic"
14 DEPENDS="poppler util-linux-uuid"
15 BUILD_DEPENDS="poppler-dev util-linux-uuid-dev lcms-dev autoconf automake libtool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./reconf-all
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make 2>&1 | sed s/ERROR:/Error:/ &&
27 make DESTDIR=$DESTDIR install 2>&1 | sed s/ERROR:/Error:/
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib $fs/usr
36 cp -a $install/usr/share $fs/usr
37 }