wok view autoconf213/receipt @ rev 22154

updated xcb-proto (1.10 -> 1.13)
author Hans-G?nter Theisgen
date Thu Nov 07 07:30:39 2019 +0100 (2019-11-07)
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 }