2012-01-30 22:02:08 +01:00
|
|
|
{stdenv, fetchurl, bash, yasm, which, perl}:
|
2010-05-24 23:57:45 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-01-30 22:02:08 +01:00
|
|
|
name = "libvpx-1.0.0";
|
2010-05-24 23:57:45 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-01-30 22:02:08 +01:00
|
|
|
url = http://webm.googlecode.com/files/libvpx-v1.0.0.tar.bz2;
|
|
|
|
sha256 = "08gyx90ndv0v8dhbhp3jdh6g37pmcjlfwljzsy0nskm4345dpkh7";
|
2010-05-24 23:57:45 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
sed -e 's,/bin/bash,${bash}/bin/bash,' -i configure build/make/version.sh \
|
2012-01-30 22:02:08 +01:00
|
|
|
examples/gen_example_code.sh build/make/gen_asm_deps.sh
|
2010-09-01 10:36:09 +02:00
|
|
|
sed -e '/enable linux/d' -i configure
|
2010-05-24 23:57:45 +02:00
|
|
|
'';
|
|
|
|
|
2010-09-01 10:36:09 +02:00
|
|
|
configureScript = "../configure";
|
|
|
|
|
|
|
|
preConfigure = ''
|
2010-05-24 23:57:45 +02:00
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
|
|
'';
|
|
|
|
|
2010-09-01 10:36:09 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-install-srcs"
|
|
|
|
"--disable-examples"
|
|
|
|
"--enable-vp8"
|
|
|
|
"--enable-runtime-cpu-detect"
|
|
|
|
"--enable-shared"
|
|
|
|
"--enable-pic"
|
|
|
|
];
|
|
|
|
|
2010-05-24 23:57:45 +02:00
|
|
|
installPhase = ''
|
|
|
|
make quiet=false DIST_DIR=$out install
|
|
|
|
'';
|
|
|
|
|
2012-01-30 22:02:08 +01:00
|
|
|
buildInputs = [ yasm which perl ];
|
2010-06-25 00:55:25 +02:00
|
|
|
|
2010-05-24 23:57:45 +02:00
|
|
|
meta = {
|
|
|
|
description = "VP8 video encoder";
|
|
|
|
homepage = http://code.google.com/p/webm;
|
|
|
|
license = "BSD";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|