Bump flite to 1.4, move to libraries

svn path=/nixpkgs/trunk/; revision=26759
This commit is contained in:
Shea Levy
2011-04-08 16:15:44 +00:00
parent 07fde1ab81
commit 1ee223e3f6
3 changed files with 26 additions and 31 deletions
@@ -0,0 +1,24 @@
{ stdenv, fetchurl, pkgconfig }:
stdenv.mkDerivation rec {
name = "flite-1.4";
src = fetchurl {
url = "http://www.speech.cs.cmu.edu/flite/packed/${name}/${name}-release.tar.bz2";
sha256 = "036dagsydi0qh71ayi6jshfi3ik2md1az3gpi42md9pc18b65ij5";
};
buildInputs = [ pkgconfig ];
configureFlags = ''
--enable-shared
'';
meta = {
description = "A small, fast run-time speech synthesis engine";
homepage = http://www.speech.cs.cmu.edu/flite/index.html;
license = "free-non-copyleft";
maintainers = [ stdenv.lib.maintainers.shlevy ];
};
}