diff options
author | Andreas Enge <andreas@enge.fr> | 2023-03-20 18:21:47 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2023-03-20 18:49:06 +0100 |
commit | ccb62d8feb50e2859d7c41429a9e3d9e0fe30bfe (patch) | |
tree | 4ab573cee33f277828ad553a22579175b1dda22d /gnu/packages/pdf.scm | |
parent | 098bd280f82350073e8280e37d56a14162eed09c (diff) | |
parent | f80215c7c4ae5ea0c316f4766e6c05ae4218ede3 (diff) |
Merge remote-tracking branch 'origin/master' into core-updates
Diffstat (limited to 'gnu/packages/pdf.scm')
-rw-r--r-- | gnu/packages/pdf.scm | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index a592d11bce..48420c730f 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -90,6 +90,7 @@ #:use-module (gnu packages perl) #:use-module (gnu packages photo) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages pretty-print) #:use-module (gnu packages pulseaudio) #:use-module (gnu packages python) #:use-module (gnu packages python-build) @@ -111,6 +112,60 @@ #:use-module (gnu packages xorg) #:use-module (srfi srfi-1)) +(define-public a4pdf + (package + (name "a4pdf") + (version "0.1.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jpakkane/a4pdf") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18062cm1qsbaymmjar0whbd7kaggy4x7wzp7xw94kcd1pwx2jp1p")))) + (build-system meson-build-system) + (arguments + (list #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'add-missing-header + (lambda _ + (substitute* "src/pdfgen.cpp" + (("#include <cassert>" all) + (string-append all "\n#include <unistd.h>"))))) + (add-after 'unpack 'fix-glib-application-flags + (lambda _ + ;; XXX: remove when bumping glib + (substitute* "src/pdfviewer.cpp" + (("G_APPLICATION_DEFAULT_FLAGS") + "G_APPLICATION_FLAGS_NONE")))) + (add-after 'unpack 'fix-broken-tests + (lambda* (#:key inputs native-inputs #:allow-other-keys) + (substitute* "test/a4pdftests.py" + (("'Ghostscript not found, test suite can not be run.'") + ;; Sucks, but there's no point in repairing a certain test + ;; at the moment. + "0"))))))) + (inputs (list fmt + freetype + gtk + lcms + libjpeg-turbo + libpng + zlib)) + (native-inputs (list font-google-noto + ;; ghostscript + pkg-config + python + python-pillow)) + (home-page "https://github.com/jpakkane/a4pdf") + (synopsis "Color-managed PDF generator") + (description "A4PDF is a low-level libray for generating PDF files. +It does not have a document model and instead uses PDF primitives +directly. It uses LittleCMS for color management but otherwise does not +convert data in any way.") + (license license:asl2.0))) + (define-public extractpdfmark (package (name "extractpdfmark") |