diff options
author | Andreas Enge <andreas@enge.fr> | 2014-10-29 20:05:11 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2014-10-29 21:21:49 +0100 |
commit | 4797d84ddb090eae8bde26c6fe61418abe99889e (patch) | |
tree | 0d046fbca9ba3ebea191cbf927a2f81dabad01dc | |
parent | 283fd55b4185ed9d20a130b0253676a0d2bbb934 (diff) | |
download | guix-4797d84ddb090eae8bde26c6fe61418abe99889e.tar guix-4797d84ddb090eae8bde26c6fe61418abe99889e.tar.gz |
gnu: potrace: Install libraries and header files.
* gnu/packages/fontutils.scm (potrace): Add configure flag to install
libraries and header files.
-rw-r--r-- | gnu/packages/fontutils.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index e383b36b53..52b20a5722 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -220,6 +220,9 @@ and returns a sequence of positioned glyphids from the font.") (build-system gnu-build-system) (native-inputs `(("ghostscript" ,ghostscript))) ;for tests (inputs `(("zlib" ,zlib))) + (arguments + `(#:configure-flags + `("--with-libpotrace"))) ; install library and headers (synopsis "Transform bitmaps into vector graphics") (description "Potrace is a tool for tracing a bitmap, which means, transforming a |