core/make/Pkgfile

19 lines
502 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
2018-02-03 20:26:30 +01:00
release=2
source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.bz2)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
2018-02-03 20:26:30 +01:00
sed -i '211,217 d; 219,229 d; 232 d' glob/glob.c
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
}