guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: vamp: Delete broken files from output.


From: Taylan Ulrich B.
Subject: 01/01: gnu: vamp: Delete broken files from output.
Date: Sun, 22 Feb 2015 11:57:36 +0000

taylanub pushed a commit to branch master
in repository guix.

commit 9002e17c5ab64bc833e46bad2952df1e8ea9e46f
Author: Taylan Ulrich Bayırlı/Kammer <address@hidden>
Date:   Sat Feb 21 16:37:46 2015 +0100

    gnu: vamp: Delete broken files from output.
    
    See 
<https://bugs.launchpad.net/ubuntu/+source/vamp-plugin-sdk/+bug/1253656>.
    
    * gnu/packages/audio.scm (vamp): Delete "/lib/libvamp-sdk.la" and
      "/lib/libvamp-hostsdk.la" from the output directory after the install
      phase.
---
 gnu/packages/audio.scm |   20 ++++++++++++++++----
 1 files changed, 16 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 900d061..e1ad44a 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -615,11 +615,23 @@ Suil currently supports every combination of Gtk 2, Qt 4, 
and X11.")
                     "/attachments/download/690/vamp-plugin-sdk-"
                     version
                     ".tar.gz"))
-             (sha256
-              (base32
-               "178kfgq08cmgdzv7g8dwyjp4adwx8q04riimncq4nqkm8ng9ywbv"))))
+              (sha256
+               (base32
+                "178kfgq08cmgdzv7g8dwyjp4adwx8q04riimncq4nqkm8ng9ywbv"))))
     (build-system gnu-build-system)
-    (arguments `(#:tests? #f)) ; no check target
+    (arguments
+     `(#:tests? #f                      ; no check target
+       #:phases
+       (alist-cons-after
+        'install 'remove-libvamp-hostsdk.la
+        (lambda* (#:key outputs #:allow-other-keys)
+          ;; 
https://bugs.launchpad.net/ubuntu/+source/vamp-plugin-sdk/+bug/1253656
+          (for-each delete-file
+                    (let ((out (assoc-ref outputs "out")))
+                      (list (string-append out "/lib/libvamp-sdk.la")
+                            (string-append out "/lib/libvamp-hostsdk.la"))))
+          #t)
+        %standard-phases)))
     (inputs
      `(("libsndfile" ,libsndfile)))
     (native-inputs



reply via email to

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