1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-30 03:37:36 +00:00

Ports: Add ACPICA tools port

This commit is contained in:
Liav A 2022-05-27 10:32:57 +03:00 committed by Linus Groh
parent 3667d7e93c
commit d1c9089fcd
5 changed files with 81 additions and 0 deletions

16
Ports/acpica-tools/package.sh Executable file
View file

@ -0,0 +1,16 @@
#!/usr/bin/env -S bash ../.port_include.sh
port=acpica-tools
version=20220331
workdir="acpica-unix-${version}"
auth_type=sha256
files="https://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz acpica-unix-${version}.tar.gz acaff68b14f1e0804ebbfc4b97268a4ccbefcfa053b02ed9924f2b14d8a98e21"
build() {
run make iasl
run make acpixtract
# FIXME: Make "run make acpiexec" to work
run make acpihelp
run make acpisrc
run make acpibin
}