mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: acpica: Use G-expressions.
* gnu/packages/admin.scm (acpica)[arguments]: Rewrite as G-expressions. Change-Id: I54fa79ac8008f7d8d41f9ebd757afcf7f5f1faf1
This commit is contained in:
parent
a2c462358e
commit
9a074d9f44
1 changed files with 11 additions and 7 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue