[arch-commits] Commit in acpi_call/repos (2 files)
Jan Steffens
heftig at archlinux.org
Sun Aug 16 19:04:23 UTC 2020
Date: Sunday, August 16, 2020 @ 19:04:23
Author: heftig
Revision: 681838
archrelease: copy trunk to community-staging-x86_64
Added:
acpi_call/repos/community-staging-x86_64/
acpi_call/repos/community-staging-x86_64/PKGBUILD
(from rev 681836, acpi_call/trunk/PKGBUILD)
----------+
PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
Copied: acpi_call/repos/community-staging-x86_64/PKGBUILD (from rev 681836, acpi_call/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2020-08-16 19:04:23 UTC (rev 681838)
@@ -0,0 +1,44 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+# Contributor: mortzu <me at mortzu.de>
+# Contributor: fnord0 <fnord0 at riseup.net>
+
+pkgname=acpi_call
+pkgver=1.1.0
+pkgrel=339
+pkgdesc='A linux kernel module that enables calls to ACPI methods through /proc/acpi/call'
+url='https://github.com/mkottman/acpi_call'
+arch=('x86_64')
+license=('GPL')
+makedepends=('linux-headers' "acpi_call-dkms=$pkgver")
+conflicts=('acpi_call-dkms')
+
+build() {
+ _kernver=$(</usr/src/linux/version)
+
+ fakeroot dkms build --dkmstree "$srcdir" -m acpi_call/$pkgver -k $_kernver
+}
+
+package() {
+ depends=(linux)
+
+ _kernver=$(</usr/src/linux/version)
+
+ install -Dt "$pkgdir/usr/lib/modules/$_kernver/extramodules" -m0644 \
+ acpi_call/${pkgver}/$_kernver/$CARCH/module/*
+
+ # compress each module individually
+ find "$pkgdir" -name '*.ko' -exec xz -T1 {} +
+
+ echo acpi_call | install -Dm644 /dev/stdin "$pkgdir/usr/lib/modules-load.d/$pkgname.conf"
+
+ mkdir -p "$pkgdir/usr/share"
+ cp -a /usr/share/acpi_call "$pkgdir/usr/share/$pkgname"
+}
+
+# vim:set ts=2 sw=2 et:
+
+
+
+
+
+
More information about the arch-commits
mailing list