wok view swig/receipt @ rev 10124

gource: Add $CONFIGURE_ARGS.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 20 16:39:19 2011 +0000 (2011-05-20)
parents b28b4b14a1de
children fdc03c237282
line source
1 # SliTaz package receipt.
3 PACKAGE="swig"
4 VERSION="2.0.3"
5 CATEGORY="development"
6 MAINTAINER="devel@slitaz.org"
7 SHORT_DESC="A compiler that makes it easy to integrate C and C++ code with scripting languages"
8 BUILD_DEPENDS="pcre-dev zlib-dev pkg-config"
9 WEB_SITE="http://www.swig.org/"
10 DEPENDS="gcc-lib-base zlib pcre"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 TAGS="compiler"
15 # Rules to configure and make the package.
17 compile_rules() {
18 cd $src
19 ./configure --prefix=/usr &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/share/$PACKAGE $fs/usr/share
31 }