wok view autoconf/receipt @ rev 59

File libcurl.pc was missing
author Christophe Lincoln <pankso@slitaz.org>
date Sun Dec 23 12:36:21 2007 +0100 (2007-12-23)
parents
children 8cf9ccc663f0
line source
1 # SliTaz package receipt.
3 PACKAGE="autoconf"
4 VERSION="2.61"
5 CATEGORY="devel"
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 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/share
26 cp -a $_pkg/usr/bin $fs/usr
27 cp -a $_pkg/usr/share/autoconf $fs/usr/share
28 strip -s $fs/usr/bin/* 2>/dev/null
29 }