guix-commits
[Top][All Lists]
Advanced

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

17/24: gnu: Add quvi.


From: Taylan Ulrich B.
Subject: 17/24: gnu: Add quvi.
Date: Mon, 09 Mar 2015 22:01:12 +0000

taylanub pushed a commit to branch master
in repository guix.

commit 111cd65b8f52ae92188183078f58a51901ce4368
Author: Taylan Ulrich Bayırlı/Kammer <address@hidden>
Date:   Sat Mar 7 12:19:47 2015 +0100

    gnu: Add quvi.
    
    * gnu/packages/web.scm (quvi): New variable.
---
 gnu/packages/web.scm |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 45bf5ba..c977a1e 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -871,3 +871,25 @@ parse media stream properties.")
     (description "libquvi is a library with a C API for parsing media stream
 URLs and extracting their actual media files.")
     (license l:lgpl2.1+)))
+
+(define-public quvi
+  (package
+    (name "quvi")
+    (version "0.4.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "mirror://sourceforge/quvi/quvi-" version ".tar.xz"))
+       (sha256
+        (base32 "09lhl6dv5zpryasx7yjslfrcdcqlsbwapvd5lg7w6sm5x5n3k8ci"))))
+    (build-system gnu-build-system)
+    (native-inputs `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("curl" ,curl)
+       ("libquvi" ,libquvi)))
+    (home-page "http://quvi.sourceforge.net/";)
+    (synopsis "Media stream URL parser")
+    (description "quvi is a command-line-tool suite to extract media files
+from streaming URLs.  It is a command-line wrapper for the libquvi library.")
+    (license l:lgpl2.1+)))



reply via email to

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