libpano13 2.9.17.

svn path=/nixpkgs/branches/stdenv-updates/; revision=24680
This commit is contained in:
Ludovic Courtès 2010-11-12 22:02:08 +00:00
parent 951ccd21a1
commit 10306f1b4c

View File

@ -1,24 +1,22 @@
{stdenv, fetchsvn, libjpeg, libpng, libtiff, automake, libtool, autoconf }: { fetchurl, stdenv, libjpeg, libpng, libtiff, perl }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "panotools-r955"; name = "libpano13-2.9.17";
src = fetchsvn { src = fetchurl {
url = https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano; url = "mirror://sourceforge/panotools/libpano13/${name}/${name}.tar.gz";
rev = 955; sha256 = "1zcrkw0xw11170mlhh9r8562gafwx3hd92wahl9xxaah5z4v0am2";
sha256 = "e896c21caa098d33f33f33f134a8c9a725686c2470fe3cd08b76cd7934a56034";
}; };
configurePhase = '' buildInputs = [ perl libjpeg libpng libtiff ];
export AUTOGEN_CONFIGURE_ARGS="--prefix $out"
./bootstrap
'';
buildInputs = [ libjpeg libpng libtiff automake libtool autoconf ]; doCheck = true;
meta = { meta = {
homepage = http://panotools.sourceforge.net/; homepage = http://panotools.sourceforge.net/;
description = "Free software suite for authoring and displaying virtual reality panoramas"; description = "Free software suite for authoring and displaying virtual reality panoramas";
license = "LGPL"; license = "GPLv2+";
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
}; };
} }