[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/11: gnu: Add faac.
From: |
guix-commits |
Subject: |
11/11: gnu: Add faac. |
Date: |
Sat, 4 Jul 2020 19:30:00 -0400 (EDT) |
dannym pushed a commit to branch wip-desktop
in repository guix.
commit 9e321ecd7644e6022743756268c7fb6e399e9ead
Author: Raghav Gururajan <raghavgururajan@disroot.org>
AuthorDate: Wed Jul 1 06:06:41 2020 -0400
gnu: Add faac.
* gnu/packages/audio.scm (faac): New variable.
Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/packages/audio.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index bc1e65c..8a6fa70 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -126,6 +126,34 @@
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-26))
+(define-public faac
+ (package
+ (name "faac")
+ (version "1.30")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append "https://sourceforge.net/projects/faac/files/faac-src/"
+ "faac-1.30/faac-1_30.tar.gz/download"))
+ (sha256
+ (base32 "1lmj0dib3mjp84jhxc5ddvydkzzhb0gfrdh3ikcidjlcb378ghxd"))))
+ (build-system gnu-build-system)
+ (native-inputs
+ `(("autoconf" ,autoconf)
+ ("automake" ,automake)
+ ("libtool" ,libtool)
+ ("pkg-config" ,pkg-config)))
+ (synopsis "Freeware Advanced Audio Coder")
+ (description "FAAC is an MPEG-4 and MPEG-2 AAC encoder.")
+ (home-page "https://www.audiocoding.com/faac.html")
+ (license
+ (list
+ ;; ISO MPEG-4 reference code.
+ license:gpl2+
+ ;; Others.
+ license:lgpl2.0+))))
+
(define-public libtimidity
(package
(name "libtimidity")
- branch wip-desktop updated (9326ffd -> 9e321ec), guix-commits, 2020/07/04
- 03/11: gnu: Add ccextractor., guix-commits, 2020/07/04
- 09/11: gnu: Add libtimidity., guix-commits, 2020/07/04
- 10/11: gnu: Add directfb., guix-commits, 2020/07/04
- 02/11: gnu: Add nng., guix-commits, 2020/07/04
- 11/11: gnu: Add faac.,
guix-commits <=
- 01/11: gnu: Add nanomsg., guix-commits, 2020/07/04
- 05/11: gnu: Add ruby-slim., guix-commits, 2020/07/04
- 04/11: gnu: Add libdc1394., guix-commits, 2020/07/04
- 06/11: gnu: Add libmpeg3., guix-commits, 2020/07/04
- 07/11: gnu: Add tslib., guix-commits, 2020/07/04
- 08/11: gnu: Add flux., guix-commits, 2020/07/04