wok view autoconf/receipt @ rev 10340

shared-mime-info: Add $CONFIGURE_ARGS.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun May 22 02:24:27 2011 +0000 (2011-05-22)
parents 1fc92ec54449
children 8ad990dde0f8
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 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure $CONFIGURE_ARGS &&
20 make && 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 }