diff options
author | Julien Lepiller <julien@lepiller.eu> | 2016-10-15 14:40:30 +0200 |
---|---|---|
committer | Kei Kebreau <kei@openmailbox.org> | 2016-10-16 14:00:18 -0400 |
commit | f3e222165e7c2393441346d4efd82d03a84a1fac (patch) | |
tree | c92963fe65ceb644189e8d6ac619062e4e52c516 /gnu | |
parent | b37e1e64281564c671bf3d0381bd9a6c03c6f62b (diff) | |
download | patches-f3e222165e7c2393441346d4efd82d03a84a1fac.tar patches-f3e222165e7c2393441346d4efd82d03a84a1fac.tar.gz |
gnu: Add fbida.
* gnu/packages/pdf.scm (fbida): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/pdf.scm | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index 61fe84eed9..461472abe9 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -7,6 +7,7 @@ ;;; Coypright © 2016 ng0 <ng0@we.make.ritual.n0.is> ;;; Coypright © 2016 Marius Bakke <mbakke@fastmail.com> ;;; Coypright © 2016 Ludovic Courtès <ludo@gnu.org> +;;; Coypright © 2016 Julien Lepiller <julien@lepiller.eu> ;;; ;;; This file is part of GNU Guix. ;;; @@ -45,6 +46,11 @@ #:use-module (gnu packages gettext) #:use-module (gnu packages backup) #:use-module (gnu packages lesstif) + #:use-module (gnu packages linux) + #:use-module (gnu packages xdisorg) + #:use-module (gnu packages imagemagick) + #:use-module (gnu packages gl) + #:use-module (gnu packages photo) #:use-module (gnu packages image) #:use-module (gnu packages pkg-config) #:use-module (gnu packages qt) @@ -696,3 +702,51 @@ such as smooth alpha-blended slide transitions. It provides additional tools such as zooming, highlighting an area of the screen, and a tool to navigate the PDF pages.") (license license:gpl2))) + +(define-public fbida + (package + (name "fbida") + (version "2.12") + (home-page "https://www.kraxel.org/blog/linux/fbida/") + (source (origin + (method url-fetch) + (uri (string-append "https://www.kraxel.org/releases/fbida/" + name "-" version ".tar.gz")) + (sha256 + (base32 + "0bw224vb7jh0lrqaf4jgxk48xglvxs674qcpj5y0axyfbh896cfk")))) + (build-system gnu-build-system) + (arguments + '(#:phases (alist-cons-after + 'unpack 'patch-ldconfig + (lambda _ + (substitute* "mk/Autoconf.mk" + (("/sbin/ldconfig -p") "echo lib")) #t) + (alist-delete 'configure %standard-phases)) + #:tests? #f + #:make-flags (list "CC=gcc" + (string-append "prefix=" (assoc-ref %outputs "out"))))) + (inputs `(("libjpeg" ,libjpeg) + ("curl" ,curl) + ("libtiff" ,libtiff) + ("libudev" ,eudev) + ("libwebp" ,libwebp) + ("libdrm" ,libdrm) + ("imagemagick" ,imagemagick) + ("giflib" ,giflib) + ("glib" ,glib) + ("cairo-xcb" ,cairo-xcb) + ("freetype" ,freetype) + ("fontconfig" ,fontconfig) + ("libexif" ,libexif) + ("mesa" ,mesa) + ("libepoxy" ,libepoxy) + ("libpng" ,libpng) + ("poppler" ,poppler))) + (native-inputs `(("pkg-config" ,pkg-config))) + (synopsis "Framebuffer and drm-based image viewer") + (description + "fbida contains a few applications for viewing and editing images on +the framebuffer.") + + (license license:gpl2+))) |