wok annotate make/receipt @ rev 9470

Remove some uneeded strips (thoses ones are handled by Tazwok)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Apr 04 01:29:52 2011 +0200 (2011-04-04)
parents 573bc563a455
children 6460ccb2837a
rev   line source
pankso@9 1 # SliTaz package receipt.
pankso@9 2
pankso@9 3 PACKAGE="make"
gokhlayeh@7904 4 VERSION="3.82"
pankso@204 5 CATEGORY="development"
pankso@9 6 SHORT_DESC="GNU Make to generate executables and other files from source."
pankso@9 7 MAINTAINER="pankso@slitaz.org"
gokhlayeh@8199 8 DEPENDS="glibc-base"
gokhlayeh@8199 9 BUILD_DEPENDS="gcc"
pankso@9 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@9 11 WEB_SITE="http://www.gnu.org/software/make/"
pankso@9 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
pankso@9 13
pankso@9 14 # Rules to configure and make the package.
pankso@9 15 compile_rules()
pankso@9 16 {
pankso@9 17 cd $src
slaxemulator@6693 18
gokhlayeh@7982 19 # http://savannah.gnu.org/bugs/?30612
gokhlayeh@7982 20 patch -Np1 -i ../stuff/bug30612.patch
gokhlayeh@7982 21 # http://savannah.gnu.org/bugs/?30723
gokhlayeh@7982 22 patch -Np1 -i ../stuff/bug30723.patch
gokhlayeh@7982 23
gokhlayeh@8199 24 ./configure && make && make check && make install
pankso@9 25 }
pankso@9 26
pankso@9 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@9 28 genpkg_rules()
pankso@9 29 {
pankso@9 30 mkdir -p $fs/usr/share/locale
slaxemulator@6693 31 cp -a $_pkg/usr/bin $fs/usr
slaxemulator@6693 32 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
pankso@9 33 }