Adding virtualgl (and therefore, libjpeg-turbo, a SIMD API-compatible libjpeg)

svn path=/nixpkgs/trunk/; revision=22553
This commit is contained in:
Lluís Batlle i Rossell
2010-07-10 08:45:44 +00:00
parent 134e944758
commit a8c5534849
5 changed files with 70 additions and 1 deletions

View File

@@ -19,11 +19,17 @@ stdenv.mkDerivation {
cmakeFlags = ''
-DPATH64_ENABLE_HUGEPAGES=ON
-DPATH64_ENABLE_MATHLIBS=ON -DPATH64_ENABLE_OPENMP=ON
-DPATH64_ENABLE_PSCRUNTIME=OFF -DPSC_CRT_PATH=/usr/lib64
-DPATH64_ENABLE_PSCRUNTIME=OFF
-DPATH64_ENABLE_PROFILING=OFF -DPATH64_ENABLE_TARGETS=x8664
-DCMAKE_BUILD_TYPE=Debug -DPATH64_ENABLE_FORTRAN=OFF
-DPSC_CRT_PATH=${stdenv.glibc}/lib
'';
makeFlags = "-j4";
installPhase = ''
exit 1;
'';
buildInputs = [ perl flex bison gmp mpfr cmake ];
}