guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: lash: Don't build lashd.


From: Efraim Flashner
Subject: 01/02: gnu: lash: Don't build lashd.
Date: Sun, 12 Nov 2017 05:05:14 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 44df7807684bc26703f682e2f959e5c4d147e752
Author: Efraim Flashner <address@hidden>
Date:   Sun Nov 12 11:55:56 2017 +0200

    gnu: lash: Don't build lashd.
    
    This fixes bug#28174.
    
    * gnu/packages/audio.scm (lash)[arguments]: Add phase to skip building 
lashd.
---
 gnu/packages/audio.scm | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 35b6051..4f76bde 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -1509,6 +1509,15 @@ to be plugged into a wide range of audio synthesis and 
recording packages.")
                (base32
                 "12z1vx3krrzsfccpah9xjs68900xvr7bw92wx8np5871i2yv47iw"))))
     (build-system gnu-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         ;; lashd embeds an ancient version of sigsegv so we just skip it
+         (add-after 'unpack 'skip-lashd
+           (lambda _
+             (substitute* '("Makefile.am" "Makefile.in")
+               (("lashd ") ""))
+             #t)))))
     (inputs
      `(("bdb" ,bdb)
        ("gtk" ,gtk+-2)



reply via email to

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