guix-patches
[Top][All Lists]
Advanced

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

[bug#33098] [PATCH 1/4] gnu: Add libopusenc.


From: Leo Famulari
Subject: [bug#33098] [PATCH 1/4] gnu: Add libopusenc.
Date: Fri, 19 Oct 2018 17:11:53 -0400

* gnu/packages/xiph.scm (libopusenc): New variable.
---
 gnu/packages/xiph.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm
index 7ecfa580e..dc4f9f14d 100644
--- a/gnu/packages/xiph.scm
+++ b/gnu/packages/xiph.scm
@@ -412,6 +412,28 @@ windows systems.")
     (license license:bsd-3)
     (home-page "https://www.opus-codec.org";)))
 
+(define-public libopusenc
+  (package
+    (name "libopusenc")
+    (version "0.2.1")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://archive.mozilla.org/pub/opus/";
+                                  "libopusenc-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1ffb0vhlymlsq70pxsjj0ksz77yfm2x0a1x8q50kxmnkm1hxp642"))))
+    (build-system gnu-build-system)
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (propagated-inputs
+     `(("opus" ,opus)))
+    (synopsis "Library for encoding Opus audio files and streams ")
+    (description "The libopusenc libraries provide a high-level API for
+encoding Opus files and stream.")
+    (home-page "https://www.opus-codec.org/";)
+    (license license:bsd-3)))
+
 (define-public icecast
   (package
     (name "icecast")
-- 
2.19.1






reply via email to

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