2014-06-26 17:24:44 +01:00
|
|
|
{ stdenv, fetchurl, cmake, zlib, freetype, libjpeg, libtiff, fontconfig
|
2018-08-31 12:57:29 +01:00
|
|
|
, openssl, libpng, lua5, pkgconfig, libidn, expat, fetchpatch
|
2017-05-31 01:08:00 +01:00
|
|
|
}:
|
2010-01-07 22:47:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-09-25 21:11:17 +01:00
|
|
|
version = "0.9.6";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "podofo";
|
2014-06-26 17:24:44 +01:00
|
|
|
|
2010-01-07 22:47:30 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/podofo/${pname}-${version}.tar.gz";
|
2018-07-18 21:39:53 +01:00
|
|
|
sha256 = "0wj0y4zcmj4q79wrn3vv3xq4bb0vhhxs8yifafwy9f2sjm83c5p9";
|
2010-01-07 22:47:30 +00:00
|
|
|
};
|
2014-06-26 17:24:44 +01:00
|
|
|
|
2018-08-31 12:57:29 +01:00
|
|
|
patches = [
|
|
|
|
# https://sourceforge.net/p/podofo/tickets/24/
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://sourceforge.net/p/podofo/tickets/24/attachment/podofo-cmake-3.12.patch";
|
|
|
|
extraPrefix = "";
|
|
|
|
sha256 = "087h51x60zrakzx09baan77hwz99cwb5l1j802r5g4wj7pbjz0mb";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-11-07 05:13:03 +00:00
|
|
|
outputs = [ "out" "dev" "lib" ];
|
|
|
|
|
2018-11-07 02:01:21 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
2013-04-10 15:49:18 +01:00
|
|
|
|
2018-11-07 02:01:21 +00:00
|
|
|
buildInputs = [ zlib freetype libjpeg libtiff fontconfig openssl libpng
|
|
|
|
libidn expat lua5 ];
|
2018-09-25 21:11:17 +01:00
|
|
|
|
2018-11-07 02:01:21 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DPODOFO_BUILD_SHARED=ON"
|
|
|
|
"-DPODOFO_BUILD_STATIC=OFF"
|
|
|
|
"-DCMAKE_BUILD_WITH_INSTALL_NAME_DIR=ON"
|
|
|
|
];
|
2018-11-07 05:13:03 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
moveToOutput lib "$lib"
|
|
|
|
'';
|
|
|
|
|
2018-10-25 21:22:03 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-09-15 19:37:38 +01:00
|
|
|
homepage = http://podofo.sourceforge.net;
|
|
|
|
description = "A library to work with the PDF file format";
|
2018-10-25 21:22:03 +01:00
|
|
|
platforms = platforms.all;
|
|
|
|
license = with licenses; [ gpl2 lgpl2 ];
|
2010-09-15 19:37:38 +01:00
|
|
|
};
|
2010-01-07 22:47:30 +00:00
|
|
|
}
|