2014-06-26 16:24:44 +00:00
|
|
|
{ stdenv, fetchurl, cmake, zlib, freetype, libjpeg, libtiff, fontconfig
|
|
|
|
, openssl, libpng, lua5 }:
|
2010-01-07 22:47:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-06-25 13:39:38 +00:00
|
|
|
name = "podofo-0.9.3";
|
2014-06-26 16:24:44 +00:00
|
|
|
|
2010-01-07 22:47:30 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/podofo/${name}.tar.gz";
|
2015-06-25 13:39:38 +00:00
|
|
|
sha256 = "1n12lbq9x15vqn7dc0hsccp56l5jdff1xrhvlfqlbklxx0qiw9pc";
|
2010-01-07 22:47:30 +00:00
|
|
|
};
|
2014-06-26 16:24:44 +00:00
|
|
|
|
2010-09-16 08:40:47 +00:00
|
|
|
propagatedBuildInputs = [ zlib freetype libjpeg libtiff fontconfig openssl libpng ];
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2014-12-17 18:11:30 +00:00
|
|
|
buildInputs = [ lua5 stdenv.cc.libc ];
|
2013-04-10 14:49:18 +00:00
|
|
|
|
|
|
|
crossAttrs = {
|
|
|
|
propagatedBuildInputs = [ zlib.crossDrv freetype.crossDrv libjpeg.crossDrv
|
|
|
|
libtiff.crossDrv fontconfig.crossDrv openssl.crossDrv libpng.crossDrv
|
2014-12-17 18:11:30 +00:00
|
|
|
lua5.crossDrv stdenv.ccCross.libc ];
|
2013-04-10 14:49:18 +00:00
|
|
|
};
|
|
|
|
|
2014-06-26 16:24:44 +00:00
|
|
|
# fix finding freetype-2.5
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace ./CMakeLists.txt \
|
|
|
|
--replace FREETYPE_INCLUDE_DIR FREETYPE_INCLUDE_DIRS \
|
|
|
|
--replace 'FIND_PACKAGE(FREETYPE' 'FIND_PACKAGE(Freetype'
|
|
|
|
|
|
|
|
rm ./cmake/modules/Find{FREETYPE,ZLIB,PkgConfig}.cmake
|
|
|
|
'';
|
|
|
|
|
2010-01-07 22:47:30 +00:00
|
|
|
cmakeFlags = "-DPODOFO_BUILD_SHARED=ON -DPODOFO_BUILD_STATIC=OFF";
|
2010-09-15 18:37:38 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://podofo.sourceforge.net;
|
|
|
|
description = "A library to work with the PDF file format";
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
|
|
};
|
2010-01-07 22:47:30 +00:00
|
|
|
}
|