unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#40348] gnu: Add opencore-amr
@ 2020-03-31 13:17 Raghav Gururajan
  2020-04-02  3:15 ` [bug#40348] gnu: Add opencore-amr (v2) Raghav Gururajan
  0 siblings, 1 reply; 3+ messages in thread
From: Raghav Gururajan @ 2020-03-31 13:17 UTC (permalink / raw)
  To: 40348

[-- Attachment #1: Type: text/plain, Size: 95 bytes --]

Hello Guix!

Please find the attached patch to add "opencore-amr" package.

Regards,
RG.

[-- Attachment #2: opencore-amr.patch --]
[-- Type: application/octet-stream, Size: 1388 bytes --]

From 17415cab8442927de6e9ce1b0750eb7d45b3813a Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <raghavgururajan@disroot.org>
Date: Tue, 31 Mar 2020 09:10:30 -0400
Subject: [PATCH 20/20] gnu: Add opencore-amr

* gnu/packages/audio.scm (opencore-amr): New variable.
---
 gnu/packages/audio.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 803efb5cd1..76be063ac4 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -119,6 +119,25 @@
   #:use-module (srfi srfi-1)
   #:use-module (srfi srfi-26))
 
+(define-public opencore-amr
+ (package
+  (name "opencore-amr")
+   (version "0.1.5")
+   (source
+    (origin
+     (method url-fetch)
+     (uri
+      (string-append "https://sourceforge.net/projects/opencore-amr/files/"
+                     name "/" name "-" version ".tar.gz"))
+     (sha256
+      (base32 "0hfk9khz3by0119h3jdwgdfd7jgkdbzxnmh1wssvylgnsnwnq01c"))))
+ (build-system gnu-build-system)
+ (synopsis "Adaptive Multi Rate Codec")
+ (description "OpenCore-AMR is a library of OpenCORE Framework implementation of
+Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec.")
+ (home-page "https://sourceforge.net/projects/opencore-amr/")
+ (license license:asl2.0)))
+
 (define-public alsa-modular-synth
   (package
     (name "alsa-modular-synth")
-- 
2.26.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#40348] gnu: Add opencore-amr (v2)
  2020-03-31 13:17 [bug#40348] gnu: Add opencore-amr Raghav Gururajan
@ 2020-04-02  3:15 ` Raghav Gururajan
  2020-04-05 23:42   ` bug#40348: " Danny Milosavljevic
  0 siblings, 1 reply; 3+ messages in thread
From: Raghav Gururajan @ 2020-04-02  3:15 UTC (permalink / raw)
  To: 40348

[-- Attachment #1: Type: text/plain, Size: 2 bytes --]



[-- Attachment #2: opencore-amr-v2.patch --]
[-- Type: application/octet-stream, Size: 1422 bytes --]

From 04c02868f852362f6004a8c5a6f1175e47418a23 Mon Sep 17 00:00:00 2001
From: Raghav Gururajan <raghavgururajan@disroot.org>
Date: Wed, 1 Apr 2020 23:13:33 -0400
Subject: [PATCH 17/17] gnu: Add opencore-amr

* gnu/packages/audio.scm (opencore-amr): New variable.
---
 gnu/packages/audio.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 803efb5cd1..d077b41ca3 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -119,6 +119,26 @@
   #:use-module (srfi srfi-1)
   #:use-module (srfi srfi-26))
 
+(define-public opencore-amr
+  (package
+    (name "opencore-amr")
+    (version "0.1.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append "https://sourceforge.net/projects/opencore-amr/files/"
+                       name "/" name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0hfk9khz3by0119h3jdwgdfd7jgkdbzxnmh1wssvylgnsnwnq01c"))))
+    (build-system gnu-build-system)
+    (synopsis "Adaptive Multi Rate Codec")
+    (description "OpenCore-AMR is a library of OpenCORE Framework
+implementation of Adaptive Multi Rate Narrowband and Wideband
+(AMR-NB and AMR-WB) speech codec.")
+    (home-page "https://sourceforge.net/projects/opencore-amr/")
+    (license license:asl2.0)))
+
 (define-public alsa-modular-synth
   (package
     (name "alsa-modular-synth")
-- 
2.26.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#40348: gnu: Add opencore-amr (v2)
  2020-04-02  3:15 ` [bug#40348] gnu: Add opencore-amr (v2) Raghav Gururajan
@ 2020-04-05 23:42   ` Danny Milosavljevic
  0 siblings, 0 replies; 3+ messages in thread
From: Danny Milosavljevic @ 2020-04-05 23:42 UTC (permalink / raw)
  To: Raghav Gururajan; +Cc: 40348-done

[-- Attachment #1: Type: text/plain, Size: 107 bytes --]

Hi,

thanks for the patch!

Pushed to guix master as commit d5fc8518896f406da74a2e5b7c5ac95fabfe56c9.

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-04-05 23:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-31 13:17 [bug#40348] gnu: Add opencore-amr Raghav Gururajan
2020-04-02  3:15 ` [bug#40348] gnu: Add opencore-amr (v2) Raghav Gururajan
2020-04-05 23:42   ` bug#40348: " Danny Milosavljevic

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).