Skip to content

Instantly share code, notes, and snippets.

Created August 20, 2017 10:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/41552ffad89667ed780416d41ddf2441 to your computer and use it in GitHub Desktop.
Save anonymous/41552ffad89667ed780416d41ddf2441 to your computer and use it in GitHub Desktop.
/usr/ports/core/make/Pkgfile
# 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.2.1
release=1
source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr --disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/info
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment