mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: x42-plugins: Use new package style.
* gnu/packages/music.scm (x42-plugins)[arguments]: Use g-expressions. Remove references to %outputs and %build-inputs. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
d386fa6cba
commit
8781ab4057
1 changed files with 12 additions and 11 deletions
|
@ -6058,17 +6058,18 @@ (define-public x42-plugins
|
|||
(base32 "128h9x7yzhy6q6l0fqk2zd6l48wgs2lhf2pzbiba6h3n6l9n555b"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no "check" target
|
||||
#:make-flags
|
||||
(list (string-append "PREFIX=" (assoc-ref %outputs "out"))
|
||||
"LIBZITACONVOLVER=-lzita-convolver"
|
||||
(string-append "FONTFILE="
|
||||
(assoc-ref %build-inputs "font-dejavu")
|
||||
"/share/fonts/truetype/DejaVuSans-Bold.ttf")
|
||||
(string-append "CC=" ,(cc-for-target)))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure))))
|
||||
(list
|
||||
#:tests? #f ; no "check" target
|
||||
#:make-flags
|
||||
#~(list (string-append "PREFIX=" #$output)
|
||||
"LIBZITACONVOLVER=-lzita-convolver"
|
||||
(string-append "FONTFILE="
|
||||
#$(this-package-native-input "font-dejavu")
|
||||
"/share/fonts/truetype/DejaVuSans-Bold.ttf")
|
||||
(string-append "CC=" #$(cc-for-target)))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure))))
|
||||
(inputs
|
||||
(list cairo
|
||||
fftwf
|
||||
|
|
Loading…
Reference in a new issue