aports/main/apcupsd/APKBUILD
Celeste b1f126e42e main/apcupsd: manify with mandoc
`col` is unavailable as it has been disabled since
8886d84e25

as far as i can tell, these files are not installed in
the .apk, as besides `doc/Makefile`, `*.man.txt` is only
mentioned in `platforms/mingw/installer/winapcupsd.nsi`,
so it doesn't matter what output is produced by mandoc.

also, add `mandoc` to `makedepends` and sort that alphabetically
2024-04-23 02:26:38 +00:00

66 lines
2 KiB
Text

# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=apcupsd
pkgver=3.14.14
pkgrel=6
pkgdesc="A Daemon to control APC UPSes"
subpackages="$pkgname-doc $pkgname-webif $pkgname-openrc"
url="http://www.apcupsd.org"
arch="all"
license="GPL-2.0-or-later"
depends="util-linux"
makedepends="
gd-dev
libusb-compat-dev
linux-headers
mandoc
net-snmp-dev
"
options="!check" # no test suite included
source="https://sourceforge.net/projects/apcupsd/files/apcupsd%20-%20Stable/$pkgver/apcupsd-$pkgver.tar.gz
apcupsd.initd
apcupsd.powerfail.initd
apcupsd-alpine.patch
manify-with-mandoc.patch
"
prepare() {
update_config_sub
default_prepare
}
build() {
export CHARSET="ISO8859-1"
export LANG="C"
ac_cv_path_SHUTDOWN="/sbin/poweroff" \
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--mandir=/usr/share/man \
--enable-modbus-usb \
--enable-usb \
--enable-snmp \
--enable-cgi
make
}
package() {
make DESTDIR=$pkgdir install
install -D -m755 "$srcdir"/apcupsd.initd "$pkgdir"/etc/init.d/apcupsd
install -D -m755 "$srcdir"/apcupsd.powerfail.initd \
"$pkgdir"/etc/init.d/apcupsd.powerfail
}
webif() {
mkdir -p "$subpkgdir"/usr/share/webapps/apcupsd
mv "$pkgdir"/etc/apcupsd/*.cgi "$subpkgdir"/usr/share/webapps/apcupsd
}
sha512sums="
c953bbf3e08f809748a7978a3952604176390d1cd276f187fe096d9bc3c8993b52127e8350c0363387da41318e24b4d1e00ea58df71f3bb8f50c9a5a64cd2d7f apcupsd-3.14.14.tar.gz
82bff9001e86e2eb082e0bdebce69563458bb9e864f6f70622aa7d173d5134522f295b7f2496a9ef74aa6075e52026f714810c49a866026ee834acb8adbb3c70 apcupsd.initd
8d1c266bd86cd1cdf4fccdd171a877957bf5e26e1bb8c20e4c9c6b362a63d8cc1b887a1661939e4e56228a8d23dfc81fe782806b5d1527423c2ef7872cbeb881 apcupsd.powerfail.initd
4f0712519213c4ef14f41eeef681c5498fac7bf42f205de8a855938f8e834d9488d86820d7c883e89d0d305ee287e17e2d321dbbc98ae12f8487bf58aa0d4a6b apcupsd-alpine.patch
151d6c2f2a150a9ffbf411042e8f5df883c79b2ac15292e009edc58338d790917b1afd01dc588c08741be70cc6de6bb1b13b4ddd233e5907efaebb7c5c33e311 manify-with-mandoc.patch
"