GNU Automake 1.10.1, with test suite.

svn path=/nixpkgs/trunk/; revision=12241
This commit is contained in:
Ludovic Courtès 2008-07-02 15:27:07 +00:00
parent 3800ae553c
commit b71ae8ce6b
2 changed files with 40 additions and 4 deletions

View file

@ -1,12 +1,32 @@
{stdenv, fetchurl, perl, autoconf}:
stdenv.mkDerivation {
name = "automake-1.10";
stdenv.mkDerivation rec {
name = "automake-1.10.1";
builder = ./builder.sh;
setupHook = ./setup-hook.sh;
src = fetchurl {
url = mirror://gnu/automake/automake-1.10.tar.bz2;
md5 = "0e2e0f757f9e1e89b66033905860fded";
url = "mirror://gnu/automake/${name}.tar.bz2";
sha256 = "1v155av3vdsgj9fil66cw2g4vrqanvgn33kwv35xs3ibcyck8smj";
};
patches = [ ./test-broken-make.patch ];
buildInputs = [perl autoconf];
doCheck = true;
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+";
};
}

View file

@ -0,0 +1,16 @@
The version of GNU Make in Nixpkgs is "broken" in the sense that it
produces additional output, making `AM_MAKE_INCLUDE' (tested by `make.test')
fail. Thus, we just disable `make.test' for now.
See http://article.gmane.org/gmane.comp.sysutils.automake.bugs/4234 .
--- automake-1.10/tests/Makefile.in 2006-10-15 19:25:25.000000000 +0200
+++ automake-1.10/tests/Makefile.in 2008-07-02 16:40:35.000000000 +0200
@@ -482,7 +482,6 @@ ltdeps.test \
ltlibobjs.test \
ltlibsrc.test \
maintclean.test \
-make.test \
makej.test \
makevars.test \
man.test \