gnu: acpica: Use G-expressions.

* gnu/packages/admin.scm (acpica)[arguments]:
Rewrite as G-expressions.

Change-Id: I54fa79ac8008f7d8d41f9ebd757afcf7f5f1faf1
This commit is contained in:
Tobias Geerinckx-Rice 2024-09-08 02:00:00 +02:00
parent a2c462358e
commit 9a074d9f44
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -2518,12 +2518,16 @@ (define-public acpica
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (list flex bison)) (native-inputs (list flex bison))
(arguments (arguments
`(#:make-flags (list (string-append "PREFIX=" %output) (list
(string-append "CC=" ,(cc-for-target)) #:make-flags
"HOST=_LINUX" #~(list (string-append "PREFIX=" #$output)
"OPT_CFLAGS=-Wall -fno-strict-aliasing") (string-append "CC=" #$(cc-for-target))
#:tests? #f ; no 'check' target "HOST=_LINUX"
#:phases (modify-phases %standard-phases (delete 'configure)))) "OPT_CFLAGS=-Wall -fno-strict-aliasing")
#:tests? #f ;no test suite
#:phases
#~(modify-phases %standard-phases
(delete 'configure)))) ;no configure script
(home-page "https://acpica.org/") (home-page "https://acpica.org/")
(synopsis "Tools for the development and debugging of ACPI tables") (synopsis "Tools for the development and debugging of ACPI tables")
(description (description
@ -2536,7 +2540,7 @@ (define-public acpica
This package contains only the user-space tools needed for ACPI table This package contains only the user-space tools needed for ACPI table
development, not the kernel implementation of ACPI.") development, not the kernel implementation of ACPI.")
(license license:gpl2))) ; dual GPLv2/ACPICA Licence (license license:gpl2))) ;dual GPLv2/ACPICA Licence
(define-public s-tui (define-public s-tui
(package (package