guix-devel
[Top][All Lists]
Advanced

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

Re: [PATCH 2/2] gnu: Add AlsaModularSynth.


From: Ricardo Wurmus
Subject: Re: [PATCH 2/2] gnu: Add AlsaModularSynth.
Date: Wed, 04 Mar 2015 12:09:52 +0100

Ricardo Wurmus writes:

>> The problem here is that the library is not installed to /lib, but to
>> /lib64 or /libmips64.  I'll see if I can coerce it to install the
>> library to /lib on all platforms.
>
> zita-alsa-pcmi has the very same problem.  I'll take care of both of
> them.

Attached are patches for both zita-alsa-pcmi and clalsadrv that should
fix these failures.

~~ Ricardo

>From f5e35f488fd1b4f5d916476d7c522783809b0f82 Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <address@hidden>
Date: Wed, 4 Mar 2015 11:50:26 +0100
Subject: [PATCH 1/2] gnu: zita-alsa-pcmi: set LIBDIR to "lib".

* gnu/packages/audio.scm (zita-alsa-pcmi)[source]: Set LIBDIR to "lib".
---
 gnu/packages/audio.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 2783643..66bcdcc 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -1119,7 +1119,8 @@ interface.")
               (modules '((guix build utils)))
               (snippet
                '(substitute* "libs/Makefile"
-                  (("ldconfig") "true")))))
+                  (("ldconfig") "true")
+                  (("^LIBDIR =.*") "LIBDIR = lib\n")))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f ; no "check" target
-- 
2.1.0

>From e2f8a5cdbfb490c1d3c180c58fcf990ca403bd90 Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <address@hidden>
Date: Wed, 4 Mar 2015 11:52:07 +0100
Subject: [PATCH 2/2] gnu: clalsadrv: set LIBDIR to "lib".

* gnu/packages/audio.scm (clalsadrv)[source]: Set LIBDIR to "lib".
---
 gnu/packages/audio.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 66bcdcc..29f08ff 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -254,7 +254,8 @@ plugins are provided.")
               (modules '((guix build utils)))
               (snippet
                '(substitute* "libs/Makefile"
-                  (("/sbin/ldconfig") "true")))))
+                  (("/sbin/ldconfig") "true")
+                  (("^LIBDIR =.*") "LIBDIR = lib\n")))))
     (build-system gnu-build-system)
     (arguments
      `(#:tests? #f ; no "check" target
-- 
2.1.0


reply via email to

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