gnu: libantlr3c: Simplify configure.
* gnu/packages/java.scm (libantlr3c)[arguments]: Remove custom 'configure phase. Move '--enable-64bit' to configure-flags, conditional on being for a 64-bit platform.
parent
2818c66e93
commit
e012c29463
|
@ -9,7 +9,7 @@
|
|||
;;; Copyright © 2017, 2019, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2018, 2019 Gábor Boskovits <boskovits@gmail.com>
|
||||
;;; Copyright © 2018 Chris Marusich <cmmarusich@gmail.com>
|
||||
;;; Copyright © 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2018, 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2019, 2020, 2021 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
|
||||
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
||||
;;; Copyright © 2020 Raghav Gururajan <raghavgururajan@disroot.org>
|
||||
|
@ -130,24 +130,11 @@
|
|||
(base32 "0lpbnb4dq4azmsvlhp6khq1gy42kyqyjv8gww74g5lm2y6blm4fa"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags (list "--enable-debuginfo" "--disable-static")
|
||||
#:phases (modify-phases %standard-phases
|
||||
(replace 'configure
|
||||
(lambda* (#:key build target native-inputs inputs outputs
|
||||
(configure-flags '()) out-of-source? system
|
||||
#:allow-other-keys)
|
||||
(let ((configure (assoc-ref %standard-phases 'configure))
|
||||
(enable-64bit? (member system '("aarch64-linux"
|
||||
"x86_64-linux"
|
||||
"mips64el-linux"))))
|
||||
(configure #:build build #:target target
|
||||
#:native-inputs native-inputs
|
||||
#:inputs inputs #:outputs outputs
|
||||
#:configure-flags `(,(if enable-64bit?
|
||||
"--enable-64bit"
|
||||
'())
|
||||
,@configure-flags)
|
||||
#:out-of-source? out-of-source?)))))))
|
||||
`(#:configure-flags (list "--enable-debuginfo"
|
||||
"--disable-static"
|
||||
,@(if (target-64bit?)
|
||||
`("--enable-64bit")
|
||||
'()))))
|
||||
(synopsis "ANTLR C Library")
|
||||
(description "LIBANTLR3C provides run-time C libraries for ANTLR3 (ANother
|
||||
Tool for Language Recognition v3).")
|
||||
|
|
Reference in New Issue