wok annotate autoconf/receipt @ rev 8713

Fixed avidemux.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Feb 17 18:20:31 2011 +0000 (2011-02-17)
parents 1d56d7d2d17c
children b283b17be7a4
rev   line source
pankso@15 1 # SliTaz package receipt.
pankso@15 2
pankso@15 3 PACKAGE="autoconf"
slaxemulator@6441 4 VERSION="2.68"
pankso@200 5 CATEGORY="development"
pankso@15 6 SHORT_DESC="Tool to automatically configure software source code."
pankso@15 7 MAINTAINER="pankso@slitaz.org"
slaxemulator@6606 8 DEPENDS="m4 perl"
slaxemulator@6441 9 BUILD_DEPENDS="m4 perl"
pankso@15 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@15 11 WEB_SITE="http://www.gnu.org/software/autoconf/"
pankso@15 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pankso@15 13
pankso@15 14 # Rules to configure and make the package.
pankso@15 15 compile_rules()
pankso@15 16 {
pankso@15 17 cd $src
gokhlayeh@8169 18 ./configure &&
gokhlayeh@8169 19 make &&
gokhlayeh@8169 20 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 {
pankso@15 26 mkdir -p $fs/usr/share
pankso@15 27 cp -a $_pkg/usr/bin $fs/usr
pankso@15 28 cp -a $_pkg/usr/share/autoconf $fs/usr/share
pankso@15 29 }