CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
file: updated to 5.12 and aligned with upstream
[crossrootfs.git] / make / Pkgfile
... / ...
CommitLineData
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
4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5
6name=make
7version=3.82
8release=2
9source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2
10 savannah-bugs.patch)
11
12build() {
13 cd $name-$version
14 patch -p0 -i ../savannah-bugs.patch
15 ./configure --build=$CHOST \
16 --host=$CTARGET \
17 --prefix=/usr \
18 --disable-nls \
19 --mandir=/usr/man
20 make
21 make DESTDIR=$PKG install
22 rm -rf $PKG/usr/share
23}