From e77c1722dd4f69f9743ebd1d5c25f76cfc5aad5f Mon Sep 17 00:00:00 2001 From: Raghav Gururajan Date: Sun, 14 Jun 2020 05:03:08 -0400 Subject: [PATCH 33/58] gnu: Add libvideogfx. * gnu/packages/video.scm (libvideogfx): New variable. --- gnu/packages/video.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 1fd4e2c010..abeea4c5a5 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -167,6 +167,40 @@ #:use-module (gnu packages xml) #:use-module (gnu packages xorg)) +(define-public libvideogfx + (package + (name "libvideogfx") + (version "1.0.9") + (source + (origin + (method git-fetch) + (uri + (git-reference + (url "https://github.com/farindk/libvideogfx.git") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "154b0j8cfg879pg08xcbwvbz8z9nrfnyj31i48vxir1psas70ynq")))) + (build-system gnu-build-system) + (native-inputs + `(("autoconf" ,autoconf) + ("automake" ,automake) + ("libtool" ,libtool))) + (inputs + `( ;; XXX: Build fails with ffmpeg. + ;;("ffmpeg" ,ffmpeg) + ("jpeg" ,libjpeg-turbo) + ;; XXX: Build fails with libpng. + ;;("png" libpng) + ("x11" ,libx11) + ("xext" ,libxext))) + (synopsis "Video processing library") + (description "LibVideoGfx is a C++ library for low-level video processing. +It aims at speeding up the development process for image and video processing +applications by providing high-level classes for commonly required tasks.") + (home-page "https://github.com/farindk/libvideogfx") + (license license:lgpl2.1+))) + (define-public tslib (package (name "tslib") -- 2.26.2