2009-04-05 20:13:59 +02:00
|
|
|
{stdenv, fetchurl, perl, autoconf, makeWrapper}:
|
2005-01-26 10:44:13 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2005-09-13 11:46:46 +02:00
|
|
|
name = "automake-1.9.6";
|
2009-04-05 20:13:59 +02:00
|
|
|
|
2005-01-26 10:44:13 +01:00
|
|
|
builder = ./builder.sh;
|
2009-04-05 20:13:59 +02:00
|
|
|
|
2005-01-26 10:44:13 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
2009-04-05 20:13:59 +02:00
|
|
|
|
2005-01-26 10:44:13 +01:00
|
|
|
src = fetchurl {
|
2007-08-24 14:32:36 +02:00
|
|
|
url = ftp://ftp.gnu.org/gnu/automake/automake-1.9.6.tar.gz;
|
2005-09-13 11:46:46 +02:00
|
|
|
md5 = "c60f77a42f103606981d456f1615f5b4";
|
2005-01-26 10:44:13 +01:00
|
|
|
};
|
2009-04-05 20:13:59 +02:00
|
|
|
|
|
|
|
buildInputs = [perl autoconf makeWrapper];
|
2008-08-04 16:37:51 +02:00
|
|
|
|
|
|
|
# Don't fixup "#! /bin/sh" in Libtool, otherwise it will use the
|
|
|
|
# "fixed" path in generated files!
|
|
|
|
dontPatchShebangs = true;
|
2009-04-05 20:13:59 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.gnu.org/software/automake/;
|
|
|
|
description = "GNU Automake, a GNU standard-compliant makefile generator";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GNU Automake is a tool for automatically generating
|
|
|
|
`Makefile.in' files compliant with the GNU Coding
|
|
|
|
Standards. Automake requires the use of Autoconf.
|
|
|
|
'';
|
|
|
|
|
|
|
|
license = "GPLv2+";
|
|
|
|
};
|
2005-01-26 10:44:13 +01:00
|
|
|
}
|