wok view autoconf/receipt @ rev 9255

Up: libraw1394 to 2.0.7.
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Mar 14 20:58:36 2011 +0000 (2011-03-14)
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 }