diff options
Diffstat (limited to 'repo/acpi/acpi.xibuild')
-rw-r--r-- | repo/acpi/acpi.xibuild | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/repo/acpi/acpi.xibuild b/repo/acpi/acpi.xibuild new file mode 100644 index 0000000..6e40c3a --- /dev/null +++ b/repo/acpi/acpi.xibuild @@ -0,0 +1,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 +} |