34 lines
938 B
Bash
34 lines
938 B
Bash
# Template file for 'acpi_call-dkms'
|
|
pkgname=acpi_call-dkms
|
|
version=1.2.1
|
|
revision=1
|
|
archs="i686 x86_64*"
|
|
wrksrc=acpi_call-${version}
|
|
short_desc="Kernel module allowing calls to ACPI methods through /proc/acpi/call"
|
|
maintainer="Daniel A. Maierhofer <git@damadmai.at>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="https://github.com/nix-community/acpi_call"
|
|
distfiles="${homepage}/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=aa84ac8a209e18ee6de5fa809abd3474fdca67cda3c3256f0650c4fce78d4a0f
|
|
|
|
dkms_modules="acpi_call ${version}"
|
|
depends="dkms"
|
|
|
|
do_build() {
|
|
make dkms.conf
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir usr/src/acpi_call-${version}
|
|
vcopy Makefile usr/src/acpi_call-${version}
|
|
vcopy dkms.conf usr/src/acpi_call-${version}
|
|
vcopy "*.c" usr/src/acpi_call-${version}
|
|
|
|
vmkdir usr/share/acpi_call
|
|
vcopy "examples/*.sh" usr/share/acpi_call
|
|
vcopy "support/*" usr/share/acpi_call
|
|
vcopy "support/windump_hack/*" usr/share/acpi_call
|
|
|
|
vdoc "README.md"
|
|
}
|