qhull-2011.1, use cmake

svn path=/nixpkgs/trunk/; revision=28592
This commit is contained in:
Yury G. Kudryashov 2011-08-15 18:05:10 +00:00
parent 7a80e467cf
commit 6dc8b7351a

View File

@ -1,29 +1,16 @@
{stdenv, fetchurl}:
{stdenv, fetchurl, cmake}:
stdenv.mkDerivation rec {
name = "qhull-2011.1";
stdenv.mkDerivation {
name = "qhull-2010.1";
src = fetchurl {
url = http://www.qhull.org/download/qhull-2010.1-src.tgz;
sha256 = "1ghnwci1s56yzzwg8gmlzhsd5v3imsqxf24yb0j5m6qv8kxqaw2m";
url = "${meta.homepage}/download/${name}-src.tgz";
sha256 = "1i2lqw0552mvbcc1q7l4b31fpzf2l2qcabc23r4sybhwyljl9bmd";
};
NIX_CFLAGS_COMPILE = "-fno-strict-aliasing " +
(if stdenv.system == "x86_64-linux" then "-fPIC" else "");
buildNativeInputs = [ cmake ];
patchPhase = ''
cd src
sed -i -e "s@/usr/local@$out@" Makefile;
sed -i -e "s@man/man1@share/man/man1@" Makefile;
'';
installPhase = ''
ensureDir $out/bin
ensureDir $out/include/qhull
ensureDir $out/lib
cp qconvex qdelaunay qhalf qhull rbox qvoronoi $out/bin
cp *.h $out/include/qhull
cp libqhull.a $out/lib
'';
cmakeFlags = "-DMAN_INSTALL_DIR=share/man/man1 -DDOC_INSTALL_DIR=share/doc/qhull";
meta = {
homepage = http://www.qhull.org/;