summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2015-01-24 17:59:22 +0100
committerAndreas Enge <andreas@enge.fr>2015-01-24 17:59:22 +0100
commite6bdb36a51857476d8f410bedd09495fbb97db21 (patch)
treebf5ddbd31aaefd84a531e16c949dba430e2ba8b6 /gnu
parent2f7fade9ea4fa74ead6dce03fa604a031cafb547 (diff)
gnu: Add libdvdread.
* gnu/packages/video.scm (libdvdread): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/video.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 2ed8ac66666..fe932f65ee7 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.")
413 "youtube-dl is a small command-line program to download videos from 413 "youtube-dl is a small command-line program to download videos from
414YouTube.com and a few more sites.") 414YouTube.com and a few more sites.")
415 (license public-domain))) 415 (license public-domain)))
416
417(define-public libdvdread
418 (package
419 (name "libdvdread")
420 (version "5.0.0")
421 (source (origin
422 (method url-fetch)
423 (uri (string-append "http://download.videolan.org/videolan/"
424 name "/" version "/"
425 name "-" version ".tar.bz2"))
426 (sha256
427 (base32
428 "052z62l3x8ka5jpf5bi1mzp5p323n1z9rxj74nq5c35a88x1myv6"))))
429 (build-system gnu-build-system)
430 (home-page "http://dvdnav.mplayerhq.hu/")
431 (synopsis "Library for reading video DVDs")
432 (description
433 "Libdvdread provides a simple foundation for reading DVD video
434disks. It provides the functionality that is required to access many
435DVDs. It parses IFO files, reads NAV-blocks, and performs CSS
436authentication and descrambling (if an external libdvdcss library is
437installed).")
438 (license gpl2+)))