wok view autoconf/receipt @ rev 6525

Up mpc-library (0.8.2) caused by gmp upgrade
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 03 09:20:54 2010 +0200 (2010-10-03)
parents aa81307e960f
children 1d56d7d2d17c
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 BUILD_DEPENDS="m4 perl"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.gnu.org/software/autoconf/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/share/autoconf $fs/usr/share
32 }