mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: rtmidi: Remove custom bootstrap phase.
* gnu/packages/audio.scm (rtmidi)[arguments]: Remove autoconf phase.
This commit is contained in:
parent
cdb4048d72
commit
7db147ec45
1 changed files with 15 additions and 19 deletions
|
@ -2285,25 +2285,21 @@ (define-public rtmidi
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;no "check" target
|
`(#:tests? #f ;no "check" target
|
||||||
#:phases (modify-phases %standard-phases
|
#:phases
|
||||||
(add-after
|
(modify-phases %standard-phases
|
||||||
'unpack 'autoconf
|
(add-before 'build 'fix-makefile
|
||||||
(lambda _ (invoke "autoreconf" "-vfi")))
|
(lambda _
|
||||||
(add-before
|
(substitute* "Makefile"
|
||||||
'build 'fix-makefile
|
(("/bin/ln") "ln")
|
||||||
(lambda _
|
(("RtMidi.h RtError.h") "RtMidi.h"))
|
||||||
(substitute* "Makefile"
|
#t))
|
||||||
(("/bin/ln") "ln")
|
(add-before 'install 'make-target-dirs
|
||||||
(("RtMidi.h RtError.h") "RtMidi.h"))
|
(lambda _
|
||||||
#t))
|
(let ((out (assoc-ref %outputs "out")))
|
||||||
(add-before
|
(mkdir-p (string-append out "/bin"))
|
||||||
'install 'make-target-dirs
|
(mkdir (string-append out "/lib"))
|
||||||
(lambda _
|
(mkdir (string-append out "/include")))
|
||||||
(let ((out (assoc-ref %outputs "out")))
|
#t)))))
|
||||||
(mkdir-p (string-append out "/bin"))
|
|
||||||
(mkdir (string-append out "/lib"))
|
|
||||||
(mkdir (string-append out "/include")))
|
|
||||||
#t)))))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("jack" ,jack-1)
|
`(("jack" ,jack-1)
|
||||||
("alsa-lib" ,alsa-lib)))
|
("alsa-lib" ,alsa-lib)))
|
||||||
|
|
Loading…
Reference in a new issue