blob: 6e40c3a17b83bddf050b77c467ffc66f55b59395 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
MAKEDEPS="make"
DEPS="musl acpid"
PKG_VER=1.7
SOURCE=https://downloads.sourceforge.net/acpiclient/acpi-$PKG_VER.tar.gz
DESC="Client for battery, power, and thermal readings"
build () {
./configure --prefix=/usr
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|