wok annotate m4/receipt @ rev 14999

Add GPL3 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 13:52:56 2013 +0000 (2013-08-10)
parents fc477d1ae77b
children d959bccca2a9
rev   line source
pankso@19 1 # SliTaz package receipt.
pankso@19 2
pankso@19 3 PACKAGE="m4"
slaxemulator@8967 4 VERSION="1.4.16"
pankso@204 5 CATEGORY="development"
pankso@19 6 SHORT_DESC="GNU traditional Unix macro processor."
pankso@19 7 MAINTAINER="pankso@slitaz.org"
pascal@14999 8 LICENSE="GPL3"
pankso@19 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@19 10 WEB_SITE="http://www.gnu.org/software/m4/"
pankso@19 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pankso@12811 12 HOST_ARCH="i486 arm"
pankso@19 13
slaxemulator@10372 14 DEPENDS="glibc-base"
pankso@12811 15 BUILD_DEPENDS=""
slaxemulator@10418 16
pankso@19 17 # Rules to configure and make the package.
pankso@19 18 compile_rules()
pankso@19 19 {
pankso@19 20 cd $src
pankso@12811 21 ./configure $CONFIGURE_ARGS &&
pankso@10028 22 make && make install
pankso@19 23 }
pankso@19 24
pankso@19 25 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@19 26 genpkg_rules()
pankso@19 27 {
pankso@19 28 mkdir -p $fs/usr
pankso@12811 29 cp -a $install/usr/bin $fs/usr
pankso@19 30 }