wok-current view autoconf/receipt @ rev 18600
Up cookutils(775)
| author | Aleksej Bobylev <al.bobylev@gmail.com> | 
|---|---|
| date | Mon Nov 16 01:25:36 2015 +0200 (2015-11-16) | 
| parents | a09e9d64e4c9 | 
| children | 7f39549720b8 | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="autoconf"
     4 VERSION="2.69"
     5 CATEGORY="development"
     6 SHORT_DESC="A GNU tool for automatically configuring source code"
     7 MAINTAINER="pankso@slitaz.org"
     8 LICENSE="GPL2"
     9 WEB_SITE="http://www.gnu.org/software/autoconf/"
    10 TARBALL="$PACKAGE-$VERSION.tar.xz"
    11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    13 DEPENDS="m4 perl"
    14 BUILD_DEPENDS="m4 perl"
    16 # Rules to compile & install the temporary toolchain.
    17 cook_tmp_toolchain()
    18 {
    19 	cd $src
    20 	./configure && make && make install
    21 }
    23 # Rules to configure and make the package.
    24 compile_rules()
    25 {
    26 	./configure $CONFIGURE_ARGS &&
    27 	make &&
    28 	make install
    29 }
    31 # Rules to gen a SliTaz package suitable for Tazpkg.
    32 genpkg_rules()
    33 {
    34 	mkdir -p $fs/usr/share
    35 	cp -a $install/usr/bin $fs/usr
    36 	cp -a $install/usr/share/autoconf $fs/usr/share
    37 	rm -f $fs/usr/share/autoconf/INSTALL
    38 }