[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: Add libdvdread.
From: |
Andreas Enge |
Subject: |
01/02: gnu: Add libdvdread. |
Date: |
Sat, 24 Jan 2015 17:05:56 +0000 |
andreas pushed a commit to branch master
in repository guix.
commit e6bdb36a51857476d8f410bedd09495fbb97db21
Author: Andreas Enge <address@hidden>
Date: Sat Jan 24 17:59:22 2015 +0100
gnu: Add libdvdread.
* gnu/packages/video.scm (libdvdread): New variable.
---
gnu/packages/video.scm | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 2ed8ac6..fe932f6 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -413,3 +413,26 @@ SVCD, DVD, 3ivx, DivX 3/4/5, WMV and H.264 movies.")
"youtube-dl is a small command-line program to download videos from
YouTube.com and a few more sites.")
(license public-domain)))
+
+(define-public libdvdread
+ (package
+ (name "libdvdread")
+ (version "5.0.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "http://download.videolan.org/videolan/"
+ name "/" version "/"
+ name "-" version ".tar.bz2"))
+ (sha256
+ (base32
+ "052z62l3x8ka5jpf5bi1mzp5p323n1z9rxj74nq5c35a88x1myv6"))))
+ (build-system gnu-build-system)
+ (home-page "http://dvdnav.mplayerhq.hu/")
+ (synopsis "Library for reading video DVDs")
+ (description
+ "Libdvdread provides a simple foundation for reading DVD video
+disks. It provides the functionality that is required to access many
+DVDs. It parses IFO files, reads NAV-blocks, and performs CSS
+authentication and descrambling (if an external libdvdcss library is
+installed).")
+ (license gpl2+)))