[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#26669: [PATCH 4/7] gnu: Add dvdauthor.
From: |
Thomas Danckaert |
Subject: |
bug#26669: [PATCH 4/7] gnu: Add dvdauthor. |
Date: |
Wed, 26 Apr 2017 18:30:35 +0200 |
From: Thomas Danckaert <address@hidden>
* gnu/packages/video.scm (dvdauthor): New variable.
---
gnu/packages/video.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index cc07cc712..b04956a00 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -17,6 +17,7 @@
;;; Copyright © 2017 Feng Shu <address@hidden>
;;; Copyright © 2017 Tobias Geerinckx-Rice <address@hidden>
;;; Copyright © 2017 Chris Marusich <address@hidden>
+;;; Copyright © 2017 Thomas Danckaert <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -75,6 +76,7 @@
#:use-module (gnu packages gstreamer)
#:use-module (gnu packages gtk)
#:use-module (gnu packages image)
+ #:use-module (gnu packages imagemagick)
#:use-module (gnu packages linux)
#:use-module (gnu packages lua)
#:use-module (gnu packages m4)
@@ -1193,6 +1195,33 @@ authentication and descrambling (if an external
libdvdcss library is
installed).")
(license license:gpl2+)))
+(define-public dvdauthor
+ (package
+ (name "dvdauthor")
+ (version "0.7.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://sourceforge/dvdauthor/dvdauthor-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1drfc47hikfzc9d7hjk34rw10iqw01d2vwmn91pv73ppx4nsj81h"))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("libdvdread" ,libdvdread)
+ ("libpng" ,libpng)
+ ("imagemagick" ,imagemagick)
+ ("libxml2" ,libxml2)
+ ("freetype" ,freetype)))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (synopsis "Generates a DVD-Video movie from a MPEG-2 stream")
+ (description "@command{dvdauthor} will generate a DVD-Video movie from a
+MPEG-2 stream containing VOB packets.")
+ (home-page "http://dvdauthor.sourceforge.net")
+ (license license:gpl3+)))
+
(define-public libdvdnav
(package
(name "libdvdnav")
--
2.12.2
- bug#26669: [PATCH 1/7] gnu: Add cdrtools., Thomas Danckaert, 2017/04/26
- bug#26669: [PATCH 2/7] gnu: Add dvd+rw-tools., Thomas Danckaert, 2017/04/26
- bug#26669: [PATCH 5/7] gnu: Add wxwidgets-3.1., Thomas Danckaert, 2017/04/26
- bug#26669: [PATCH 6/7] gnu: Add wxsvg., Thomas Danckaert, 2017/04/26
- bug#26669: [PATCH 4/7] gnu: Add dvdauthor.,
Thomas Danckaert <=
- bug#26669: [PATCH 7/7] gnu: Add dvdstyler., Thomas Danckaert, 2017/04/26
- bug#26669: [PATCH 3/7] gnu: brasero: Embed growisofs store item., Thomas Danckaert, 2017/04/26
- bug#26669: [PATCH 2/7] gnu: Add dvd+rw-tools., Danny Milosavljevic, 2017/04/26
- bug#26669: [PATCH 1/7] gnu: Add cdrtools., Mathieu Othacehe, 2017/04/26