wok view autoconf/receipt @ rev 12747

add ziproxy
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 09 16:25:48 2012 +0200 (2012-05-09)
parents b283b17be7a4
children a09e9d64e4c9
line source
1 # SliTaz package receipt.
3 PACKAGE="autoconf"
4 VERSION="2.68"
5 CATEGORY="development"
6 SHORT_DESC="Tool to automatically configure software source code."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.gnu.org/software/autoconf/"
10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 DEPENDS="m4 perl"
13 BUILD_DEPENDS="m4 perl"
15 cook_tmp_toolchain()
16 {
17 cd $src
18 ./configure && make && make install
19 }
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 cd $src
25 ./configure $CONFIGURE_ARGS &&
26 make && make install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/share/autoconf $fs/usr/share
35 }