blob: bc6e4285ce163c323d46b32f464360b4238ce6cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
|