summaryrefslogtreecommitdiffstats
path: root/make/Pkgfile
blob: e548ea383d2cd56421fe347fee7cd13897fe1ff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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=make
version=3.82
release=1
source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
build () 
{ 
	cd $name-$version;
	./configure --prefix=$prefix --mandir=$mandir $(use_enable nls);
	make;
	make DESTDIR=$PKG install;
}