core/make/Pkgfile

17 lines
421 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
2023-02-27 12:52:05 +01:00
version=4.4.1
release=1
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
}