core/make/Pkgfile

17 lines
441 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
2020-01-28 11:37:22 +01:00
version=4.3
release=1
source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.lz)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
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
}