core/make/Pkgfile

18 lines
442 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# 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
2006-02-23 16:26:10 +01:00
name=make
2016-06-12 00:51:10 +02:00
version=4.2.1
2016-05-31 14:15:09 +02:00
release=1
2016-06-12 00:51:10 +02:00
source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
2016-05-31 14:15:09 +02:00
2015-07-25 22:56:35 +02:00
./configure --prefix=/usr --disable-nls
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2015-07-25 22:56:35 +02:00
rm -r $PKG/usr/share/info
2006-02-23 16:26:10 +01:00
}