core/make/Pkgfile

19 lines
499 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
2022-11-06 16:31:40 +01:00
version=4.4
release=2
source=(https://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.lz
upstream-fixes-20221116.patch)
2006-02-23 16:26:10 +01:00
build() {
2021-12-13 12:06:32 +01:00
cd $name-$version
patch -p1 -i $SRC/upstream-fixes-20221116.patch
2021-12-13 12:06:32 +01:00
./configure --prefix=/usr --disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/info
2006-02-23 16:26:10 +01:00
}