guix-commits
[Top][All Lists]
Advanced

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

01/08: gnu: rubberband: Update to 1.8.2.


From: guix-commits
Subject: 01/08: gnu: rubberband: Update to 1.8.2.
Date: Tue, 16 Apr 2019 23:59:18 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 4bee557d4346a366fb27d2352f899f1e1ec723cc
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Tue Apr 16 23:10:33 2019 +0200

    gnu: rubberband: Update to 1.8.2.
    
    * gnu/packages/audio.scm (rubberband): Update to 1.8.2.
    [arguments]: Add ‘skip-jni-installation’ phase.
---
 gnu/packages/audio.scm | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 8160ba5..10dab82 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -2316,7 +2316,7 @@ aimed at audio/musical applications.")
 (define-public rubberband
   (package
     (name "rubberband")
-    (version "1.8.1")
+    (version "1.8.2")
     (source (origin
               (method url-fetch)
               (uri
@@ -2326,9 +2326,19 @@ aimed at audio/musical applications.")
               (file-name (string-append name "-" version ".tar.bz2"))
               (sha256
                (base32
-                "05amrbrxx0da3w7m237q51799r8xgs4ffqabi2qv06hq8dpcj386"))))
+                "0462fmjnfqpv2qi0s6ny42drqarkr0xy9lw8frjmfgzyzl5n9294"))))
     (build-system gnu-build-system)
-    (arguments `(#:tests? #f)) ; no check target
+    (arguments
+     `(#:tests? #f                      ; no check target
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'skip-jni-installation
+           ;; ‘make install’ unconditionally installs librubberband-jni.so,
+           ;; which is never built by ‘make all’.  Skip it.
+           (lambda _
+             (substitute* "Makefile.in"
+               ((".*cp -f \\$\\(JNI_TARGET\\).*") ""))
+             #t)))))
     (inputs
      `(("ladspa" ,ladspa)
        ("libsamplerate" ,libsamplerate)



reply via email to

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