mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: boost: Simplify phases.
* gnu/packages/boost.scm (boost)[arguments]: Remove unneeded '#t's from 'configure', 'build', and 'install' phases.
This commit is contained in:
parent
81f6bf2d50
commit
196fb12cb8
1 changed files with 5 additions and 8 deletions
|
@ -92,18 +92,15 @@ (define-public boost
|
|||
|
||||
(invoke "./bootstrap.sh"
|
||||
(string-append "--prefix=" out)
|
||||
"--with-toolset=gcc")
|
||||
#t)))
|
||||
"--with-toolset=gcc"))))
|
||||
(replace 'build
|
||||
(lambda* (#:key outputs make-flags #:allow-other-keys)
|
||||
(lambda* (#:key make-flags #:allow-other-keys)
|
||||
(apply invoke "./b2"
|
||||
(format #f "-j~a" (parallel-job-count))
|
||||
make-flags)
|
||||
#t))
|
||||
make-flags)))
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs make-flags #:allow-other-keys)
|
||||
(apply invoke "./b2" "install" make-flags)
|
||||
#t)))))
|
||||
(lambda* (#:key make-flags #:allow-other-keys)
|
||||
(apply invoke "./b2" "install" make-flags))))))
|
||||
|
||||
(home-page "http://www.boost.org")
|
||||
(synopsis "Peer-reviewed portable C++ source libraries")
|
||||
|
|
Loading…
Reference in a new issue