core/make/Pkgfile

17 lines
431 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: Controls the generation of executables and other compile-related tasks
# URL: http://www.gnu.org/software/make/
# Maintainer: Per Lid<69>n, core-ports at crux dot nu
2006-02-23 16:26:10 +01:00
name=make
2006-05-26 22:25:31 +02:00
version=3.81
2006-02-23 16:26:10 +01:00
release=1
2006-05-26 22:25:31 +02:00
source=(ftp://ftp.uninett.no/pub/gnu/$name/$name-$version.tar.bz2)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
./configure --prefix=/usr --disable-nls
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/info
}