gnu: pd: Fix indentation of phases.

* gnu/packages/music.scm (pd)[arguments]: Fix indentation.
master
Ricardo Wurmus 2017-04-02 12:47:11 +02:00
parent 037bf4f4a0
commit 4712cbb0c7
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 9 additions and 11 deletions

View File

@ -1374,17 +1374,15 @@ export.")
`(#:tests? #f ; no "check" target
#:phases
(modify-phases %standard-phases
(add-before
'configure 'fix-wish-path
(lambda _
(substitute* "src/s_inter.c"
((" wish ") (string-append " " (which "wish8.6") " ")))
(substitute* "tcl/pd-gui.tcl"
(("exec wish ") (string-append "exec " (which "wish8.6") " ")))
#t))
(add-after
'unpack 'autoconf
(lambda _ (zero? (system* "autoreconf" "-vfi")))))))
(add-before 'configure 'fix-wish-path
(lambda _
(substitute* "src/s_inter.c"
((" wish ") (string-append " " (which "wish8.6") " ")))
(substitute* "tcl/pd-gui.tcl"
(("exec wish ") (string-append "exec " (which "wish8.6") " ")))
#t))
(add-after 'unpack 'autoconf
(lambda _ (zero? (system* "autoreconf" "-vif")))))))
(native-inputs
`(("autoconf" ,autoconf)
("automake" ,automake)