* Added GNU make.

svn path=/nixpkgs/trunk/; revision=313
This commit is contained in:
Eelco Dolstra 2003-08-18 17:08:09 +00:00
parent 5bfb7b04d4
commit 185464700d
3 changed files with 23 additions and 0 deletions

9
pkgs/gnumake/gnumake-build.sh Executable file
View file

@ -0,0 +1,9 @@
#! /bin/sh
. $stdenv/setup || exit 1
tar xvfj $src || exit 1
cd make-* || exit 1
./configure --prefix=$out || exit 1
make || exit 1
make install || exit 1

13
pkgs/gnumake/gnumake.fix Normal file
View file

@ -0,0 +1,13 @@
Package(
[ ("name", "gnumake-3.80")
, ("build", Relative("gnumake/gnumake-build.sh"))
, ("src", Call(IncludeFix("fetchurl/fetchurl.fix"),
[ ("url", "ftp://ftp.nluug.nl/pub/gnu/make/make-3.80.tar.bz2")
, ("md5", "0bbd1df101bc0294d440471e50feca71")
]))
, ("stdenv", IncludeFix("stdenv-linux/stdenv-nativetools.fix"))
]
)

View file

@ -18,6 +18,7 @@ Function(["nativeTools"],
, IncludeFix("gnutar/gnutar.fix")
, IncludeFix("diffutils/diffutils.fix")
, IncludeFix("gzip/gzip.fix")
, IncludeFix("gnumake/gnumake.fix")
]))
]
)