27 lines
802 B
Bash
27 lines
802 B
Bash
# Template file for 'acpica-utils'
|
|
pkgname=acpica-utils
|
|
version=20150818
|
|
revision=1
|
|
build_pie=yes
|
|
wrksrc="acpica-unix-${version}"
|
|
only_for_archs="i686 i686-musl x86_64 x86_64-musl"
|
|
hostmakedepends="flex"
|
|
short_desc="Intel ACPI CA Unix utilities"
|
|
homepage="https://www.acpica.org/"
|
|
license="GPL-2"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
distfiles="http://acpica.org/sites/acpica/files/acpica-unix-${version}.tar.gz"
|
|
checksum=c265fe24565d4cbfd759886e42387c5514093b28c1c1a547db77c1933b332fc8
|
|
|
|
do_build() {
|
|
ln -sfr source/tools/acpinames/AcpiNames.h source/tools/acpinames/acpinames.h
|
|
sed -e 's/_CYGWIN/_LINUX/g' -e 's/-Werror//g' -i generate/unix/Makefile.config
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
i686*) make BITS=32;;
|
|
*) make BITS=64;;
|
|
esac
|
|
}
|
|
do_install() {
|
|
make DESTDIR=${DESTDIR} install
|
|
}
|