[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
16/71: gnu: Add julia-libfdk-aac-jll.
From: |
guix-commits |
Subject: |
16/71: gnu: Add julia-libfdk-aac-jll. |
Date: |
Sun, 30 May 2021 05:57:34 -0400 (EDT) |
efraim pushed a commit to branch master
in repository guix.
commit 6e07d698d2e395bdb085ccc3806739854c235946
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun May 30 10:56:05 2021 +0300
gnu: Add julia-libfdk-aac-jll.
* gnu/packages/julia-jll.scm (julia-libfdk-aac-jll): New variable.
---
gnu/packages/julia-jll.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/julia-jll.scm b/gnu/packages/julia-jll.scm
index 26df3ee..2fbad4f 100644
--- a/gnu/packages/julia-jll.scm
+++ b/gnu/packages/julia-jll.scm
@@ -25,6 +25,7 @@
#:use-module (guix utils)
#:use-module (guix build-system julia)
#:use-module (gnu packages)
+ #:use-module (gnu packages audio)
#:use-module (gnu packages compression)
#:use-module (gnu packages fontutils)
#:use-module (gnu packages fribidi)
@@ -362,6 +363,42 @@ used in autogenerated packages via
@code{BinaryBuilder.jl}.")
(description "This package provides a wrapper for the libjpeg-turbo
library.")
(license license:expat)))
+(define-public julia-libfdk-aac-jll
+ (package
+ (name "julia-libfdk-aac-jll")
+ (version "0.1.6+2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/JuliaBinaryWrappers/libfdk_aac_jll.jl")
+ (commit (string-append "libfdk_aac-v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0jinb205dn1yfvl0mx7dsah4xj3r8vc3ig8yl72langjc7vrwdn0"))))
+ (build-system julia-build-system)
+ (arguments
+ '(#:tests? #f ; no runtests
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'override-binary-path
+ (lambda* (#:key inputs #:allow-other-keys)
+ (map
+ (lambda (wrapper)
+ (substitute* wrapper
+ (("artifact\"libfdk_aac\"")
+ (string-append "\"" (assoc-ref inputs "libfdk") "\""))))
+ ;; There's a Julia file for each platform, override them all
+ (find-files "src/wrappers/" "\\.jl$")))))))
+ (inputs
+ `(("libfdk" ,libfdk)))
+ (propagated-inputs
+ `(("julia-jllwrappers" ,julia-jllwrappers)))
+ (home-page "https://github.com/JuliaBinaryWrappers/libfdk_aac_jll.jl")
+ (synopsis "FDK library wrappers")
+ (description "This package provides a wrapper for the libfdk audio
library.")
+ (license license:expat)))
+
(define-public julia-libpng-jll
(package
(name "julia-libpng-jll")
- 09/71: gnu: julia-libpng-jll: Move to (gnu packages julia-jll)., (continued)
- 09/71: gnu: julia-libpng-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 12/71: gnu: Add julia-x264-jll., guix-commits, 2021/05/30
- 08/71: gnu: julia-zstd-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 11/71: gnu: julia-imagemagick-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 14/71: gnu: Add julia-fribidi-jll., guix-commits, 2021/05/30
- 17/71: gnu: Add julia-lame-jll., guix-commits, 2021/05/30
- 19/71: gnu: Add julia-libvorbis-jll., guix-commits, 2021/05/30
- 10/71: gnu: julia-libtiff-jll: Move to (gnu packages julia-jll)., guix-commits, 2021/05/30
- 13/71: gnu: Add julia-bzip2-jll., guix-commits, 2021/05/30
- 15/71: gnu: Add julia-freetype2-jll., guix-commits, 2021/05/30
- 16/71: gnu: Add julia-libfdk-aac-jll.,
guix-commits <=
- 18/71: gnu: Add julia-ogg-jll., guix-commits, 2021/05/30
- 20/71: gnu: Add julia-x265-jll., guix-commits, 2021/05/30
- 21/71: gnu: Add julia-openssl-jll., guix-commits, 2021/05/30
- 22/71: gnu: Add julia-opus-jll., guix-commits, 2021/05/30
- 26/71: gnu: Add julia-libiconv-jll., guix-commits, 2021/05/30
- 27/71: gnu: Add julia-libffi-jll., guix-commits, 2021/05/30
- 28/71: gnu: Add julia-xml2-jll., guix-commits, 2021/05/30
- 34/71: gnu: Add julia-libuuid-jll., guix-commits, 2021/05/30
- 35/71: gnu: Add julia-expat-jll., guix-commits, 2021/05/30
- 23/71: gnu: Add julia-libass-jll., guix-commits, 2021/05/30