Skip to content

Instantly share code, notes, and snippets.

Created November 3, 2013 15:24
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/7291416 to your computer and use it in GitHub Desktop.
Save anonymous/7291416 to your computer and use it in GitHub Desktop.
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.0
release=1
source=(ftp://ftp.gnu.org/gnu/$name/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=/usr --mandir=/usr/man --disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment