[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
62/401: gnu: Add libvideogfx.
From: |
guix-commits |
Subject: |
62/401: gnu: Add libvideogfx. |
Date: |
Tue, 18 Aug 2020 16:20:44 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit f5b60ca6285bc6429059817e2f1af24dd33be8a9
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Thu Jul 2 09:10:19 2020 -0400
gnu: Add libvideogfx.
* gnu/packages/video.scm (libvideogfx): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/video.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 81b349d..4748387 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -172,6 +172,50 @@
#: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)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'fix-build-errors
+ (lambda _
+ (substitute* "libvideogfx/graphics/fileio/ffmpeg.cc"
+ (("av_close_input_file\\(")
+ "avformat_close_input(&"))
+ (substitute* "libvideogfx/graphics/fileio/png.cc"
+ (("is != NULL") "is.good()"))
+ #t)))))
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("libtool" ,libtool)
+ ("pkg-config" ,pkg-config)))
+ (inputs
+ `(("ffmpeg" ,ffmpeg-2.8)
+ ("jpeg" ,libjpeg-turbo)
+ ("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://dirk-farin.net/software/libvideogfx/index.html")
+ (license license:lgpl2.1+)))
+
(define-public tslib
(package
(name "tslib")
- 143/401: gnu: yelp-tools: Update package definition., (continued)
- 143/401: gnu: yelp-tools: Update package definition., guix-commits, 2020/08/18
- 145/401: gnu: zenity: Update package definition., guix-commits, 2020/08/18
- 67/401: gnu: Add mjpegtools., guix-commits, 2020/08/18
- 74/401: gnu: Add svt-hevc., guix-commits, 2020/08/18
- 77/401: gnu: Add webrtc-audio-processing., guix-commits, 2020/08/18
- 79/401: gnu: Add zxing-cpp., guix-commits, 2020/08/18
- 34/401: gnu: glib-networking: Update to 2.62.4., guix-commits, 2020/08/18
- 39/401: gnu: faad2: Update to 2.8.8., guix-commits, 2020/08/18
- 58/401: gnu: Add directfb., guix-commits, 2020/08/18
- 60/401: gnu: Add flite., guix-commits, 2020/08/18
- 62/401: gnu: Add libvideogfx.,
guix-commits <=
- 65/401: gnu: Add schroedinger., guix-commits, 2020/08/18
- 68/401: gnu: Add libofa., guix-commits, 2020/08/18
- 69/401: gnu: Add libopenmpt., guix-commits, 2020/08/18
- 71/401: gnu: Add lksctp-tools., guix-commits, 2020/08/18
- 75/401: gnu: Add transcode., guix-commits, 2020/08/18
- 78/401: gnu: Add wildmidi., guix-commits, 2020/08/18
- 80/401: gnu: Add iqa., guix-commits, 2020/08/18
- 85/401: gnu: Add libcloudproviders., guix-commits, 2020/08/18
- 88/401: gnu: gtk+: Propagate libcloudproviders., guix-commits, 2020/08/18
- 91/401: gnu: gtksourceview-2: Update package definition., guix-commits, 2020/08/18