blob: 58f4826766d25838ed1b3a7a5ab0585f7b2b9eac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# 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=1
source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr --mandir=/usr/man --disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}
|