prevent accidents with the general build environment. More changes in the build system and other section build files to follow. -> Fixed library path in base/libical build file to prevent creation of lib64 directory -> Fixed code that searches for an SMBuild file inside a package installer when installing from a package using base/pkgtools's installpkg script -> Added a missing brace in base/findutils build file -> Upgraded base/ntfs-3g to 2021.8.22 -> Temporarily removed rm -f command used to discard man pages in base/openssl build file -> Added if/else check in base/rust build file to only extract rust toolchain in the absence of rust installation on the system -> Upgraded base/syssstat to 12.5.5
38 lines
908 B
Text
Executable file
38 lines
908 B
Text
Executable file
app=acpid
|
|
version=2.0.32
|
|
build=1sml
|
|
homepage='http://sourceforge.net/projects/acpid2/'
|
|
download=''
|
|
desc="Tools and daemon for implementing ACPI standard on Linux"
|
|
requires="musl"
|
|
|
|
build() {
|
|
compileonlyfor x86_64
|
|
mkandenterbuilddir
|
|
rm -rf $app-$version
|
|
|
|
tar xf $srcdir/$app-$version.tar.?z**
|
|
cd $app-$version
|
|
fixbuilddirpermissions
|
|
|
|
./configure \
|
|
--prefix="" \
|
|
--sysconfdir=/etc \
|
|
--sbindir=/bin
|
|
|
|
make
|
|
make install DESTDIR=$pkg
|
|
|
|
install -Dm 755 $srcdir/acpi_handler.sh $pkg/etc/acpi/acpi_handler.sh.new
|
|
install -Dm 644 $srcdir/default $pkg/etc/acpi/events/default
|
|
install -Dm 755 $srcdir/rc.acpid $pkg/etc/rc.d/rc.acpid
|
|
|
|
cp COPYING $pkgdocs/
|
|
head -n 100 Changelog > $pkgdocs/CHANGELOG
|
|
|
|
mkfinalpkg
|
|
}
|
|
|
|
sha512sums="
|
|
c7afffdf9818504e1ac03b0ad693a05f772bfd07af9808262b3b6bb82ca4dabe6253c94e6dc59e5be6f0da9e815e8bcf2d3e16f02b23d0248b6bad4509e78be7 acpid-2.0.32.tar.xz
|
|
"
|