mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: dumb: Fix build.
* gnu/packages/music.scm (dumb, dumb-allegro4): Fix failing build of "dumb" caused by missing allegro-4 dependency. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
02a0c1fad9
commit
d6e4ed34a7
1 changed files with 3 additions and 2 deletions
|
@ -705,7 +705,8 @@ (define-public dumb
|
|||
(arguments
|
||||
'(#:tests? #f ; no check target
|
||||
#:configure-flags
|
||||
(list "-DBUILD_SHARED_LIBS=ON"
|
||||
(list "-DBUILD_ALLEGRO4=OFF"
|
||||
"-DBUILD_SHARED_LIBS=ON"
|
||||
"-DBUILD_EXAMPLES=OFF")))
|
||||
(home-page "https://github.com/kode54/dumb")
|
||||
(synopsis "Module audio renderer library")
|
||||
|
@ -729,7 +730,7 @@ (define-public dumb-allegro4
|
|||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments dumb)
|
||||
((#:configure-flags flags)
|
||||
`(cons "-DBUILD_ALLEGRO4=ON" ,flags))))
|
||||
`(cons "-DBUILD_ALLEGRO4=ON" ,(delete "-DBUILD_ALLEGRO4=OFF" flags)))))
|
||||
(inputs
|
||||
(list allegro-4))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue