[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/19: gnu: Add libvideogfx.
From: |
guix-commits |
Subject: |
02/19: gnu: Add libvideogfx. |
Date: |
Sun, 5 Jul 2020 15:02:17 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 139e8ebcad098b7347434ad69de33e4c23801bdb
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 1a74112..017293a 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -170,6 +170,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")
- branch wip-desktop updated (baed2b9 -> 4b88052), guix-commits, 2020/07/05
- 02/19: gnu: Add libvideogfx.,
guix-commits <=
- 01/19: gnu: Add ffmpeg-2.8., guix-commits, 2020/07/05
- 03/19: gnu: Add libde265., guix-commits, 2020/07/05
- 05/19: gnu: Add schroedinger., guix-commits, 2020/07/05
- 10/19: gnu: Add tinyalsa., guix-commits, 2020/07/05
- 06/19: gnu: Add libquicktime., guix-commits, 2020/07/05
- 14/19: gnu: Add svt-hevc., guix-commits, 2020/07/05
- 04/19: gnu: Add libmms., guix-commits, 2020/07/05
- 08/19: gnu: Add libofa., guix-commits, 2020/07/05
- 12/19: gnu: Add srt., guix-commits, 2020/07/05
- 07/19: gnu: Add mjpegtools., guix-commits, 2020/07/05