guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

67/334: gnu: Add mjpegtools.


From: guix-commits
Subject: 67/334: gnu: Add mjpegtools.
Date: Sat, 15 Aug 2020 16:26:22 -0400 (EDT)

dannym pushed a commit to branch wip-desktop
in repository guix.

commit b6228a0df4d272f63be358add44882444d162c02
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Fri Jul 3 08:07:02 2020 -0400

    gnu: Add mjpegtools.
    
    * gnu/packages/video.scm (mjpegtools): New variable.
    
    Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
 gnu/packages/video.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 783bb3e..18fc963 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -260,6 +260,32 @@ library.")
     (home-page "http://libquicktime.sourceforge.net/";)
     (license license:lgpl2.1+)))
 
+(define-public mjpegtools
+  (package
+    (name "mjpegtools")
+    (version "2.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append "https://sourceforge.net/projects/"; name "/files/"
+                       name "/" version "/" name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0kvhxr5hkabj9v7ah2rzkbirndfqdijd9hp8v52c1z6bxddf019w"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("gtk+-2" ,gtk+-2)
+       ("libdv" ,libdv)
+       ("libpng" ,libpng)
+       ("libquicktime" ,libquicktime)
+       ("sdl" ,sdl)))
+    (synopsis "Tools for handling MPEG")
+    (description "Mjpeg tools is a suite of programs which support video 
capture,
+editing, playback, and compression to MPEG of MJPEG video.  Edit, play and
+compression software is hardware independent.")
+    (home-page "http://mjpeg.sourceforge.net/";)
+    (license license:gpl2+)))
+
 (define-public libmms
   (package
     (name "libmms")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]