CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
Merged changes from noeabi (72cbd18e791bd2edff0e8d23873136187f0cd936)
[crossrootfs.git] / make / Pkgfile
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@crux-arm.nu
5
6 name=make
7 version=3.81
8 release=1
9 source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
10
11 build() {
12 cd $name-$version
13 ./configure --build=$CHOST \
14 --host=$CTARGET \
15 --prefix=/usr \
16 --disable-nls
17 make
18 make DESTDIR=$PKG install
19 rm -rf $PKG/usr/info
20 }