core/make/Pkgfile
Michal Soltys 140f45145e make: fix bugs 30612, 30723, 31743
A few diffs from official make repository. In particular - 30612 made
compiling dev86 problematic.

Signed-off-by: Michal Soltys <soltys@ziu.info>
Signed-off-by: Juergen Daubert <jue@jue.li>
2011-04-01 08:59:03 +02:00

19 lines
510 B
Plaintext

# Description: Controls the generation of executables and other compile-related tasks
# URL: http://www.gnu.org/software/make/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=make
version=3.82
release=2
source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2
savannah-bugs.patch)
build() {
cd $name-$version
patch -p0 -i ../savannah-bugs.patch
./configure --prefix=/usr --mandir=/usr/man --disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}