core/make/Pkgfile

17 lines
441 B
Plaintext

# Description: Controls the generation of executables and other compile-related tasks
# URL: http://www.gnu.org/software/make/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=make
version=4.3
release=1
source=(http://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
}