mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-07 11:29:59 +01:00
gnu: libantlr3c: Use G-Expression.
gnu/packages/java.scm (libantlr3c)[arguments]: Use G-Expression. Change-Id: If280b345a9c86ddccb0614a124ff8b2215b8648c
This commit is contained in:
parent
4d0f5e1345
commit
b213b0d360
1 changed files with 10 additions and 8 deletions
|
@ -21,6 +21,7 @@
|
||||||
;;; Copyright © 2022, 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
;;; Copyright © 2022, 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
||||||
;;; Copyright © 2024 Paul A. Patience <paul@apatience.com>
|
;;; Copyright © 2024 Paul A. Patience <paul@apatience.com>
|
||||||
;;; Copyright © 2024 Raven Hallsby <karl@hallsby.com>
|
;;; Copyright © 2024 Raven Hallsby <karl@hallsby.com>
|
||||||
|
;;; Copyright © 2025 Zheng Junjie <873216071@qq.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -2187,14 +2188,15 @@ build process and its dependencies, whereas Make uses Makefile format.")
|
||||||
(base32 "0lpbnb4dq4azmsvlhp6khq1gy42kyqyjv8gww74g5lm2y6blm4fa"))))
|
(base32 "0lpbnb4dq4azmsvlhp6khq1gy42kyqyjv8gww74g5lm2y6blm4fa"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags (list "--enable-debuginfo"
|
(list #:configure-flags
|
||||||
"--disable-static"
|
#~(list "--enable-debuginfo"
|
||||||
,@(if (target-64bit?)
|
"--disable-static"
|
||||||
`("--enable-64bit")
|
#$@(if (target-64bit?)
|
||||||
'())
|
#~("--enable-64bit")
|
||||||
,@(if (target-riscv64?)
|
#~())
|
||||||
`("--disable-abiflags")
|
#$@(if (target-riscv64?)
|
||||||
'()))))
|
#~("--disable-abiflags")
|
||||||
|
#~()))))
|
||||||
(synopsis "ANTLR C Library")
|
(synopsis "ANTLR C Library")
|
||||||
(description "LIBANTLR3C provides run-time C libraries for ANTLR3 (ANother
|
(description "LIBANTLR3C provides run-time C libraries for ANTLR3 (ANother
|
||||||
Tool for Language Recognition v3).")
|
Tool for Language Recognition v3).")
|
||||||
|
|
Loading…
Add table
Reference in a new issue