mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 15:07:14 +08:00
28 lines
658 B
Bash
28 lines
658 B
Bash
pkgname=iasl
|
|
pkgver=20150717
|
|
pkgrel=1
|
|
pkgdesc="Intel ACPI Source Language compiler"
|
|
arch=('x86_64')
|
|
url="http://acpica.org"
|
|
license=('custom')
|
|
depends=('glibc')
|
|
makedepends=('flex' 'bison')
|
|
options=('!makeflags')
|
|
source=(http://acpica.org/sites/acpica/files/acpica-unix-${pkgver}.tar.gz
|
|
LICENSE)
|
|
md5sums=('fbd03790bf99b298cac2dff942dd7a85'
|
|
'8615526144f69ea4e870d9bc37df9b29')
|
|
|
|
build() {
|
|
cd "${srcdir}/acpica-unix-${pkgver}"/generate/unix
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/acpica-unix-${pkgver}"/generate/unix
|
|
|
|
make DESTDIR=${pkgdir} install
|
|
|
|
install -D -m644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
|
} |