core/make/Pkgfile

17 lines
419 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
2021-12-13 12:06:32 +01:00
# URL: https://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
2021-12-13 12:06:32 +01:00
source=(https://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.lz)
2006-02-23 16:26:10 +01:00
build() {
2021-12-13 12:06:32 +01:00
cd $name-$version
./configure --prefix=/usr --disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/info
2006-02-23 16:26:10 +01:00
}