Updating meshlab (it was even not building fine from a long time ago)
svn path=/nixpkgs/trunk/; revision=22515
This commit is contained in:
parent
0c06d77a7d
commit
e2e5ae39f8
@ -1,49 +1,37 @@
|
|||||||
{stdenv, fetchurl, qt, bzip2, lib3ds, levmar, muparser, unzip}:
|
{stdenv, fetchurl, qt, bzip2, lib3ds, levmar, muparser, unzip}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "meshlab-1.2.2";
|
name = "meshlab-1.2.3a";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/meshlab/MeshLabSrc_v122.tar.gz;
|
url = mirror://sourceforge/meshlab/MeshLabSrc_AllInc_v123a.tgz;
|
||||||
sha256 = "166a8mx72wf3r84pnpr0ssqkd2xw6y5brviywlj8rjk6w9cy8fdc";
|
sha256 = "09w42q0x1yjr7l9ng952lic7vkb1arsvqg1fld5s297zwzfmsl9v";
|
||||||
};
|
};
|
||||||
|
|
||||||
srcGlew151 = fetchurl {
|
# I don't know why I need this; without this, the rpath set at the beginning of the
|
||||||
url = mirror://sourceforge/glew/glew-1.5.1-src.tgz;
|
# buildPhase gets removed from the 'meshlab' binary
|
||||||
sha256 = "02n1p6s6sia92fgng9iq0kqq890rga8d8g0y34mc6qxmbh43vrl9";
|
dontPatchELF = true;
|
||||||
};
|
|
||||||
|
|
||||||
srcQHull20031 = fetchurl {
|
|
||||||
url = http://www.qhull.org/download/qhull-2003.1.zip;
|
|
||||||
sha256 = "07mh371i6xs691qz6wwzkqk9h0d2dkih2q818is2b041w1l79b46";
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
patchPhase = ''
|
|
||||||
cd meshlab/src
|
|
||||||
mkdir external
|
|
||||||
pushd external
|
|
||||||
tar xf ${srcGlew151}
|
|
||||||
mv glew glew-1.5.1
|
|
||||||
unzip ${srcQHull20031}
|
|
||||||
popd
|
|
||||||
'';
|
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
pwd
|
export NIX_LDFLAGS="-rpath $out/opt/meshlab $NIX_LDFLAGS"
|
||||||
|
cd meshlab/src
|
||||||
|
pushd external
|
||||||
|
qmake -recursive external.pro
|
||||||
|
make
|
||||||
|
popd
|
||||||
qmake -recursive meshlabv12.pro
|
qmake -recursive meshlabv12.pro
|
||||||
make
|
make
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
ensureDir $out/opt/meshlab $out/bin
|
ensureDir $out/opt/meshlab $out/bin $out/lib
|
||||||
pushd meshlab
|
pushd distrib
|
||||||
cp -R meshlab plugins shaders* textures images $out/opt/meshlab
|
cp -R * $out/opt/meshlab
|
||||||
popd
|
popd
|
||||||
ln -s $out/opt/meshlab/meshlab $out/bin/meshlab
|
ln -s $out/opt/meshlab/meshlab $out/bin/meshlab
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [ qt bzip2 lib3ds levmar muparser unzip ];
|
buildInputs = [ qt unzip ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "System for the processing and editing of unstructured 3D triangular meshes";
|
description = "System for the processing and editing of unstructured 3D triangular meshes";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user