mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: tao: Remove trailing #T.
* gnu/packages/audio.scm (tao)[arguments]: Remove trailing #T from build phases... [source]: ...and from the snippet.
This commit is contained in:
parent
a73021038d
commit
d348439bb8
1 changed files with 4 additions and 8 deletions
|
@ -1250,10 +1250,8 @@ (define-public tao
|
|||
"tao-fix-parser-types.patch"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
'(begin
|
||||
(substitute* "configure"
|
||||
(("SHELL=/bin/sh") ""))
|
||||
#t))))
|
||||
'(substitute* "configure"
|
||||
(("SHELL=/bin/sh") "")))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:configure-flags '("TAO_RELEASE=-beta")
|
||||
|
@ -1269,8 +1267,7 @@ (define-public tao
|
|||
(string-append (which "sed") " -f $distdir/"))
|
||||
(("distdir=.*")
|
||||
(string-append "distdir="
|
||||
(assoc-ref outputs "out") "/share/tao")))
|
||||
#t))
|
||||
(assoc-ref outputs "out") "/share/tao")))))
|
||||
(add-after 'install 'install-extra-files
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
|
@ -1281,8 +1278,7 @@ (define-public tao
|
|||
(install-file "user-scripts/error.parse" share)
|
||||
(copy-recursively "examples" (string-append share "examples"))
|
||||
(for-each (lambda (file) (install-file file inc))
|
||||
(find-files "include" "\\.h"))
|
||||
#t))))))
|
||||
(find-files "include" "\\.h"))))))))
|
||||
(inputs
|
||||
(list audiofile
|
||||
libxi
|
||||
|
|
Loading…
Reference in a new issue