summaryrefslogtreecommitdiff
path: root/repo/acpica/acpica.xibuild
blob: dcc24ceed0f3faaafaa355c75971cfc834d59753 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh

NAME="acpica"
DESC="ACPI Component Architecture utilities"

MAKEDEPS=" flex bison"

PKG_VER=20210930
SOURCE="https://acpica.org/sites/acpica/files/acpica-unix-$PKG_VER.tar.gz"

ADDITIONAL="
disable-werror.patch
"

prepare () {
    apply_patches
}

build() {
	make
}

package() {
	make install DESTDIR="$PKG_DEST"
}