CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
m4: updated mandir
[crossrootfs.git] / make / Pkgfile
CommitLineData
6dca1d21
JB
1# Description: Controls the generation of executables and other compile-related tasks
2# URL: http://www.gnu.org/software/make/
3# Maintainer: CRUX System Team, core-ports at crux dot nu
b751b192 4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
6dca1d21
JB
5
6name=make
66448b56
VM
7version=4.0
8release=1
9source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
6dca1d21
JB
10
11build() {
12 cd $name-$version
13 ./configure --build=$CHOST \
14 --host=$CTARGET \
15 --prefix=/usr \
cbe6e515
VM
16 --disable-nls \
17 --mandir=/usr/man
6dca1d21
JB
18 make
19 make DESTDIR=$PKG install
cbe6e515 20 rm -rf $PKG/usr/share
6dca1d21 21}