Skip to content
Snippets Groups Projects
Unverified Commit b5b20bda authored by Thomas Danckaert's avatar Thomas Danckaert
Browse files

gnu: Add dvdauthor.

* gnu/packages/video.scm (dvdauthor): New variable.
parent ce426deb
No related branches found
No related tags found
No related merge requests found
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
;;; Copyright © 2017 Feng Shu <tumashu@163.com> ;;; Copyright © 2017 Feng Shu <tumashu@163.com>
;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2017 Chris Marusich <cmmarusich@gmail.com> ;;; Copyright © 2017 Chris Marusich <cmmarusich@gmail.com>
;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
...@@ -75,6 +76,7 @@ (define-module (gnu packages video) ...@@ -75,6 +76,7 @@ (define-module (gnu packages video)
#:use-module (gnu packages gstreamer) #:use-module (gnu packages gstreamer)
#:use-module (gnu packages gtk) #:use-module (gnu packages gtk)
#:use-module (gnu packages image) #:use-module (gnu packages image)
#:use-module (gnu packages imagemagick)
#:use-module (gnu packages linux) #:use-module (gnu packages linux)
#:use-module (gnu packages lua) #:use-module (gnu packages lua)
#:use-module (gnu packages m4) #:use-module (gnu packages m4)
...@@ -1193,6 +1195,33 @@ (define-public libdvdread ...@@ -1193,6 +1195,33 @@ (define-public libdvdread
installed).") installed).")
(license license:gpl2+))) (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 (define-public libdvdnav
(package (package
(name "libdvdnav") (name "libdvdnav")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment