blob: 00743c07adcb58f20935753f5c56305f02f8eed7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
description="GNU implementation of make."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://www.gnu.org/software/make/"
depends=()
name=gmake
version=3.82
release=1
source=(ftp://ftp.gnu.org/gnu/make/make-$version.tar.bz2)
build ()
{
cd make-$version;
./configure \
${CHOST:+--build=${CHOST}} \
${CTARGET:+--host=${CTARGET}} \
--prefix=$prefix \
--mandir=$mandir \
--program-prefix=g \
$(use_enable nls);
make;
make DESTDIR=$PKG install;
}
|