diff options
author | davidovski <david@davidovski.xyz> | 2022-02-06 14:45:21 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-06 14:45:21 +0000 |
commit | 9f85b0878f307141bd5ca57a0e3500409219115c (patch) | |
tree | 63d55ae2b156a99b168b5f6b4e8e871a45823e8e /repo/system/acpid.xibuild | |
parent | 31723b3943baa14269be93abcb03e1ffe44a3407 (diff) |
made changes to acpid
Diffstat (limited to 'repo/system/acpid.xibuild')
-rw-r--r-- | repo/system/acpid.xibuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/repo/system/acpid.xibuild b/repo/system/acpid.xibuild new file mode 100644 index 0000000..45748a9 --- /dev/null +++ b/repo/system/acpid.xibuild @@ -0,0 +1,29 @@ +#!/bin/bash + +MAKEDEPS=(make) +DEPS=(glibc) + +PKG_VER=2.0.33 +SOURCE=https://downloads.sourceforge.net/acpid2/acpid-$PKG_VER.tar.xz +DESC="Daemon for battery, power, and thermal readings" + +BOOTSCRIPTS=blfs-bootscripts-20210826 +ADDITIONAL=( + https://anduin.linuxfromscratch.org/BLFS/blfs-bootscripts/$BOOTSCRIPTS.tar.xz + ) + +build () { + ./configure --prefix=/usr \ + --docdir=/usr/share/doc/acpid-$PKG_VER && + make +} + +package () { + make DESTDIR=$PKG_DEST install + install -v -m755 -d $PKG_DEST/etc/acpi/events && + cp -r samples $PKG_DEST/usr/share/doc/acpid-$PKG_VER + + tar xf $BOOTSCRIPTS.tar.xz + cd $BOOTSCRIPTS + make DESTDIR=$PKG_DEST install-acpid +} |