summaryrefslogtreecommitdiff
path: root/libre/acpi_call-dkms
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2020-04-12 10:36:57 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2020-04-12 10:36:57 -0500
commit51195c7bfaba35785e69f55d4df92e772a765e1c (patch)
treeed305cd6c319dd529a82db4afadaf142b76db0d3 /libre/acpi_call-dkms
parent968d31c97c875220e50e2318a21400baf70c73d2 (diff)
Add libre/acpi_call-dkms
Diffstat (limited to 'libre/acpi_call-dkms')
-rw-r--r--libre/acpi_call-dkms/PKGBUILD50
-rw-r--r--libre/acpi_call-dkms/dkms.conf9
2 files changed, 59 insertions, 0 deletions
diff --git a/libre/acpi_call-dkms/PKGBUILD b/libre/acpi_call-dkms/PKGBUILD
new file mode 100644
index 000000000..09beaf24f
--- /dev/null
+++ b/libre/acpi_call-dkms/PKGBUILD
@@ -0,0 +1,50 @@
+# Maintainer (Arch): Maxime Gauduin <alucryd@archlinux.org>
+# Contributor (Arch): mortzu <me@mortzu.de>
+# Contributor (Arch): fnord0 <fnord0@riseup.net>
+# Contributor (Hyperbola): André Silva <emulatorman@hyperbola.info>
+# Contributor (Hyperbola): Márcio Silva <coadde@hyperbola.info>
+# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
+
+_basekernel=5.5.13-1
+
+pkgname=acpi_call-dkms
+pkgver=1.1.0
+pkgrel=286
+pkgrel+=.parabola1.basekernel${_basekernel%-*}
+pkgdesc='A linux kernel module that enables calls to ACPI methods through /proc/acpi/call - module sources'
+pkgdesc+=' (built for the linux-libre kernel package)'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+arch+=('i686')
+license=('GPL')
+depends=('dkms')
+makedepends=(linux-libre-headers=${_basekernel%-*})
+provides=("acpi_call=$pkgver-${pkgrel%%.*}")
+conflicts=('acpi_call')
+source=("acpi_call-${pkgver}.tar.gz::https://github.com/mkottman/acpi_call/archive/v${pkgver}.tar.gz"
+ 'dkms.conf')
+sha256sums=('d0d14b42944282724fca76f57d598eed794ef97448f387d1c489d85ad813f2f0'
+ '32e6ea6523b13132c6c7838bba7fbf3d040ba2d35a892c2c356245612720df8a')
+
+prepare() {
+ cd acpi_call-$pkgver
+
+ # Fix build with Linux-libre >= 3.17-gnu
+ sed -i 's|acpi/acpi.h|linux/acpi.h|' acpi_call.c
+
+ # Fix build with Linux-libre >= 4.12-gnu
+ sed -i 's|asm/uaccess.h|linux/uaccess.h|' acpi_call.c
+}
+
+package() {
+ cd acpi_call-$pkgver
+
+ install -Dt "$pkgdir/usr/src/acpi_call-$pkgver" -m0644 Makefile acpi_call.c ../dkms.conf
+
+ echo acpi_call | install -Dm0644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/acpi_call.conf"
+
+ mkdir -p "$pkgdir/usr/share/acpi_call"
+ cp -t "$pkgdir/usr/share/acpi_call" -dr --no-preserve=ownership examples support
+}
+
+# vim:set ts=2 sw=2 et:
diff --git a/libre/acpi_call-dkms/dkms.conf b/libre/acpi_call-dkms/dkms.conf
new file mode 100644
index 000000000..edc5c2482
--- /dev/null
+++ b/libre/acpi_call-dkms/dkms.conf
@@ -0,0 +1,9 @@
+PACKAGE_NAME="acpi_call"
+PACKAGE_VERSION="#MODULE_VERSION#"
+AUTOINSTALL="yes"
+
+MAKE[0]="make KVERSION=$kernelver"
+CLEAN="make clean"
+
+BUILT_MODULE_NAME[0]="acpi_call"
+DEST_MODULE_LOCATION[0]="/kernel/drivers/acpi"