wok view autoconf/receipt @ rev 9619

Up: py3k to 3.2. Added CVE-2011-1521 security fix. Also added pyconfig.h to py3k so python3 works. Nothing depends on this package yet so updating it will not cause any problems.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Apr 18 15:39:33 2011 +0000 (2011-04-18)
parents 1d56d7d2d17c
children b283b17be7a4
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 DEPENDS="m4 perl"
9 BUILD_DEPENDS="m4 perl"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.gnu.org/software/autoconf/"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure &&
19 make &&
20 make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/share/autoconf $fs/usr/share
29 }