wok view make/receipt @ rev 3714

Up: midori (0.1.8)
author Mallory Mollo <mallory@sweetpeople.org>
date Tue Jul 21 17:46:09 2009 +0200 (2009-07-21)
parents 9a12d7729c6f
children 8f3b8ae1bd16
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
16 ./configure --prefix=/usr --infodir=/usr/share/info \
17 --mandir=/usr/share/man $CONFIGURE_ARGS
18 make
19 make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/share/locale
26 cp -a $_pkg/usr/bin $fs/usr
27 cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
28 strip -s $fs/usr/bin/*
29 }