guix-commits
[Top][All Lists]
Advanced

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

01/05: gnu: Add filteraudio.


From: Efraim Flashner
Subject: 01/05: gnu: Add filteraudio.
Date: Sat, 10 Sep 2016 19:40:04 +0000 (UTC)

efraim pushed a commit to branch master
in repository guix.

commit eb64bde158e7ddb2d3c4be9cf0633391a0415e99
Author: Erik Edrosa <address@hidden>
Date:   Thu Sep 8 21:02:30 2016 -0400

    gnu: Add filteraudio.
    
    * gnu/packages/audio.scm (filteraudio): New variable.
    
    Signed-off-by: Efraim Flashner <address@hidden>
---
 gnu/packages/audio.scm |   32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 3070fc8..d818216 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -2484,3 +2484,35 @@ with support for HD extensions.")
 flavors EBU R128, ATSC A/85, and ReplayGain 2.0.  It helps normalizing the
 loudness of audio and video files to the same level.")
     (license license:gpl2+)))
+
+(define-public filteraudio
+  (let ((revision "1")
+        (commit "2fc669581e2a0ff87fba8de85861b49133306094"))
+    (package
+      (name "filteraudio")
+      (version (string-append "0.0.0-" revision "."
+                              (string-take commit 7)))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/irungentoo/filter_audio.git";)
+               (commit commit)))
+         (file-name (string-append name "-" version "-checkout"))
+         (sha256
+          (base32
+           "0hbb290n3wb23f2k692a6bhc23nnqmxqi9sc9j15pnya8wifw64g"))))
+      (build-system gnu-build-system)
+      (arguments
+       '(#:make-flags (list (string-append "PREFIX=" %output)
+                            "CC=gcc")
+         #:tests? #f ; No tests
+         #:phases
+         (modify-phases %standard-phases
+           ;; No configure script
+           (delete 'configure))))
+      (synopsis "Lightweight audio filtering library")
+      (description "An easy to use audio filtering library made from webrtc
+code, used in @code{libtoxcore}.")
+      (home-page "https://github.com/irungentoo/filter_audio";)
+      (license license:bsd-3))))



reply via email to

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