wok view autoconf213/receipt @ rev 20954

gcc83: typos (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Mar 03 17:15:30 2019 +0100 (2019-03-03)
parents
children 52649f27a0da
line source
1 # SliTaz package receipt.
3 PACKAGE="autoconf213"
4 VERSION="2.13"
5 CATEGORY="development"
6 SHORT_DESC="A GNU tool for automatically configuring source code"
7 MAINTAINER="psychomaniak@xakep.ru"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.gnu.org/software/autoconf/"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://ftpmirror.gnu.org/autoconf/autoconf-$VERSION.tar.gz"
13 DEPENDS="m4 perl"
14 BUILD_DEPENDS="m4 perl sed"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --prefix=/usr --program-suffix=-2.13
20 make &&
21 make prefix="$DESTDIR/usr" install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 cp -a $install/* $fs
28 }