diff options
Diffstat (limited to 'opt/acpi/MAKEPKG')
| -rw-r--r-- | opt/acpi/MAKEPKG | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/opt/acpi/MAKEPKG b/opt/acpi/MAKEPKG new file mode 100644 index 0000000..bc6e428 --- /dev/null +++ b/opt/acpi/MAKEPKG @@ -0,0 +1,29 @@ +#!/bin/mkpkg +# description: Client for battery, power, and thermal readings +# url: https://sourceforge.net/projects/acpiclient/ + +name=acpi +version=1.8 +release=1 +depends=() +source=( + "https://downloads.sourceforge.net/acpiclient/acpi-${version}.tar.gz" +) +sha256sums=( + "e64c6e00b53cd797427ea32a160513425b03ed4f077733f71f1f09ff340f230b" +) + +build() { + cd acpi-${version} + + ./configure --prefix=/usr + + make + make DESTDIR=${PKG} install +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} +# vim: filetype=sh |
