wok view make/receipt @ rev 7842

Up: supertux to 0.3.3.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Dec 28 01:46:45 2010 +0000 (2010-12-28)
parents 0d52f00c5fdd
children e40bc1228896
line source
1 # SliTaz package receipt.
3 PACKAGE="make"
4 VERSION="3.81"
5 CATEGORY="development"
6 SHORT_DESC="GNU Make to generate executables and other files from source."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.gnu.org/software/make/"
10 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
17 # http://savannah.gnu.org/bugs/?30612
18 #patch -Np1 -i ../stuff/bug30612.patch
20 # http://savannah.gnu.org/bugs/?30723
21 #patch -Np1 -i ../stuff/bug30723.patch
23 ./configure --prefix=/usr --infodir=/usr/share/info \
24 --mandir=/usr/share/man $CONFIGURE_ARGS
25 make
26 make check
27 make DESTDIR=$PWD/_pkg install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share/locale
34 cp -a $_pkg/usr/bin $fs/usr
35 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
36 strip -s $fs/usr/bin/*
37 }