27 lines
708 B
Bash
27 lines
708 B
Bash
# Template file for 'acpica-utils'
|
|
pkgname=acpica-utils
|
|
version=20150410
|
|
wrksrc=acpica-unix-${version}
|
|
revision=1
|
|
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=1dce8d9edeb234fd553806987471f6206f429c2aab45556f62a5b2bfe2464875
|
|
|
|
do_build() {
|
|
sed -e 's/_CYGWIN/_LINUX/g' -e 's/-Werror//g' -i generate/unix/Makefile.config
|
|
|
|
if [ "$XBPS_TARGET_ARCH" = "i686" ]; then
|
|
make BITS=32
|
|
else
|
|
make BITS=64
|
|
fi
|
|
}
|
|
do_install() {
|
|
make DESTDIR=${DESTDIR} install
|
|
}
|