[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH]: gnu: lilv: propagate inputs serd, sord and sratom.
From: |
Ricardo Wurmus |
Subject: |
[PATCH]: gnu: lilv: propagate inputs serd, sord and sratom. |
Date: |
Fri, 20 Feb 2015 22:04:30 +0100 |
lilv-0.pc requires the packages serd, sord and sratom to be present or
else pkg-config fails when looking for the flags for lilv.
The attached patch moves serd, sord and sratom from lilv's inputs to the
propagated-inputs field.
~~ Ricardo
>From a253ab3b2ed89148211275938b5e574a594d8526 Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <address@hidden>
Date: Fri, 20 Feb 2015 21:56:51 +0100
Subject: [PATCH] gnu: lilv: propagate inputs serd, sord and sratom.
* gnu/packages/audio.scm (lilv): move serd, sord and sratom to propagated
inputs.
---
gnu/packages/audio.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 40969ce..abd6f32 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -415,11 +415,13 @@ implementation of the Open Sound Control (OSC) protocol.")
"0aj2plkx56iar8vzjbq2l7hi7sp0ml99m0h44rgwai2x4vqkk2j2"))))
(build-system waf-build-system)
(arguments `(#:tests? #f)) ; no check target
- (inputs
- `(("lv2" ,lv2)
- ("serd" ,serd)
+ ;; required by lilv-0.pc
+ (propagated-inputs
+ `(("serd" ,serd)
("sord" ,sord)
("sratom" ,sratom)))
+ (inputs
+ `(("lv2" ,lv2)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(home-page "http://drobilla.net/software/lilv/")
--
2.1.0
- [PATCH]: gnu: lilv: propagate inputs serd, sord and sratom.,
Ricardo Wurmus <=