wok-next annotate autoconf/receipt @ rev 19618

memtest: update for GCC5
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 06 18:15:00 2017 +0100 (2017-02-06)
parents 11b5e93cb5f2
children 9a17d981d0f7
rev   line source
pankso@15 1 # SliTaz package receipt.
pankso@15 2
pankso@15 3 PACKAGE="autoconf"
al@14604 4 VERSION="2.69"
pankso@200 5 CATEGORY="development"
al@14604 6 SHORT_DESC="A GNU tool for automatically configuring source code"
pankso@15 7 MAINTAINER="pankso@slitaz.org"
pascal@15001 8 LICENSE="GPL2"
al@19572 9 WEB_SITE="https://www.gnu.org/software/autoconf/autoconf.html"
al@19572 10
al@14604 11 TARBALL="$PACKAGE-$VERSION.tar.xz"
pankso@15 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pankso@15 13
slaxemulator@10277 14 DEPENDS="m4 perl"
slaxemulator@10277 15 BUILD_DEPENDS="m4 perl"
slaxemulator@10277 16
pankso@15 17 # Rules to configure and make the package.
pankso@15 18 compile_rules()
pankso@15 19 {
al@19572 20 ./configure $CONFIGURE_ARGS && make && make install
pankso@15 21 }
pankso@15 22
pankso@15 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@15 24 genpkg_rules()
pankso@15 25 {
al@19572 26 cook_copy_folders bin
pankso@15 27 mkdir -p $fs/usr/share
al@14604 28 cp -a $install/usr/share/autoconf $fs/usr/share
al@14604 29 rm -f $fs/usr/share/autoconf/INSTALL
pankso@15 30 }