wok-next view autoconf/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents ac50637642b7
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="autoconf"
4 VERSION="2.69"
5 CATEGORY="development"
6 SHORT_DESC="A GNU tool for automatically configuring source code"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.gnu.org/software/autoconf/"
10 LFS="http://www.linuxfromscratch.org/lfs/view/stable/chapter06/autoconf.html"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 TARBALL_SHA1="e891c3193029775e83e0534ac0ee0c4c711f6d23"
16 BUILD_DEPENDS="m4 perl"
17 DEPENDS="perl m4"
19 COPY="@std @dev"
20 TAGS="LFS"
22 COOKOPTS="force-arch" # different .m4f
24 compile_rules() {
25 ./configure $CONFIGURE_ARGS &&
26 make &&
27 make install
28 }