wok-next view swig/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents 342b30daff76
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="swig"
4 VERSION="3.0.12"
5 CATEGORY="development"
6 SHORT_DESC="A compiler that makes it easy to integrate C and C++ code with \
7 scripting languages"
8 MAINTAINER="devel@slitaz.org"
9 LICENSE="GPL3"
10 WEB_SITE="http://www.swig.org/"
11 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/swig.html"
13 TARBALL="$PACKAGE-$VERSION.tar.gz"
14 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
16 BUILD_DEPENDS="pcre-dev zlib-dev"
18 compile_rules() {
19 ./configure \
20 --without-clisp \
21 --without-maximum-compile-warnings \
22 $CONFIGURE_ARGS &&
23 make &&
24 make install || return 1
26 cook_pick_docs Doc/*
27 }
29 genpkg_rules() {
30 copy @std @dev
31 DEPENDS="libpcre perl zlib"
32 TAGS="compiler"
33 }