diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-07-02 09:50:04 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-07-02 09:50:04 +0200 |
commit | 0f28ee348778379bfa81094491b73479f1113f84 (patch) | |
tree | b9cb0a9bbefe1b405afb18c2f38a88683a5e8d95 /gnu | |
parent | 3cf118a110e5f75a75e8eeda197dbd2ce094c335 (diff) | |
download | guix-0f28ee348778379bfa81094491b73479f1113f84.tar.gz guix-0f28ee348778379bfa81094491b73479f1113f84.zip |
gnu: pdf: Add PoDoFo.
* gnu/packages/pdf.scm (podofo): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/pdf.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index c8fa4593fb..ad5a620f77 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -22,6 +22,7 @@ #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) + #:use-module (guix build-system cmake) #:use-module (gnu packages) #:use-module (gnu packages compression) #:use-module (gnu packages fontutils) @@ -29,9 +30,11 @@ #:use-module (gnu packages lesstif) #:use-module (gnu packages image) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages openssl) #:use-module (gnu packages xorg) #:use-module (gnu packages glib) #:use-module (gnu packages gtk) + #:use-module (gnu packages lua) #:use-module (srfi srfi-1)) (define-public poppler @@ -122,3 +125,36 @@ "Xpdf is a viewer for Portable Document Format (PDF) files") (license license:gpl3) ; or gpl2, but not gpl2+ (home-page "http://www.foolabs.com/xpdf/"))) + +(define-public podofo + (package + (name "podofo") + (version "0.9.2") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/podofo/podofo-" + version ".tar.gz")) + (sha256 + (base32 + "1wx3s0718rmhdzdwyi8hgpf2s92sk3hijy8f4glrmnjpiihr2la6")))) + (build-system cmake-build-system) + (inputs ; TODO: Add cppunit for tests + `(;; Optional Lua support fails to build with: + ;; error: 'luaL_getn' was not declared in this scope + ;; ("lua" ,lua) + ("libpng" ,libpng) + ("openssl" ,openssl) + ("fontconfig" ,fontconfig) + ("libtiff" ,libtiff) + ("libjpeg" ,libjpeg-8) + ("freetype" ,freetype) + ("zlib" ,zlib))) + (home-page "http://podofo.sourceforge.net") + (synopsis "Tools to work with the PDF file format") + (description + "PoDoFo is a C++ library and set of command-line tools to work with the +PDF file format. It can parse PDF files and load them into memory, and makes +it easy to modify them and write the changes to disk. It is primarily useful +for applications that wish to do lower level manipulation of PDF, such as +extracting content or merging files.") + (license license:lgpl2.0+))) |