core/make/Pkgfile

19 lines
499 B
Plaintext

# Description: Controls the generation of executables and other compile-related tasks
# URL: https://www.gnu.org/software/make/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=make
version=4.4
release=2
source=(https://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.lz
upstream-fixes-20221116.patch)
build() {
cd $name-$version
patch -p1 -i $SRC/upstream-fixes-20221116.patch
./configure --prefix=/usr --disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/info
}