# 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.1
release=1
source=(https://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.lz)

build() {
    cd $name-$version

    ./configure --prefix=/usr \
        --disable-nls
    make
    make DESTDIR=$PKG install

    rm -r $PKG/usr/share/info
}
