summaryrefslogtreecommitdiff
path: root/user/uptimed/APKBUILD
blob: 3ae15539612dd4e6b68a3702deb35454c35d3f37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Contributor: Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org>
# Contributor: A. Wilcox <awilfox@adelielinux.org>
# Maintainer: Kiyoshi Aman <adelie@aerdan.vulpine.house>
pkgname=uptimed
pkgver=0.4.2
pkgrel=0
pkgdesc='System uptime record daemon'
arch="all"
options="!check"  # No tests
url="https://github.com/rpodgorny/uptimed"
license="GPL-2.0-only"
subpackages="$pkgname-doc $pkgname-openrc"
makedepends="autoconf automake libtool"
source="$pkgname-$pkgver.tar.gz::https://github.com/rpodgorny/uptimed/archive/v$pkgver.tar.gz
	uptimed.init"

build() {
	cd "$builddir"
	autoreconf -vif
	./configure \
		--build=$CBUILD \
		--host=$CHOST \
		--prefix=/usr \
		--sysconfdir=/etc \
		--mandir=/usr/share/man
	make
}

package() {
	cd "$builddir"
	make install DESTDIR="$pkgdir"
	mv "$pkgdir"/etc/uptimed.conf-dist \
		"$pkgdir"/etc/uptimed.conf
	install -Dm755 "$srcdir"/uptimed.init \
		"$pkgdir"/etc/init.d/uptimed
}

sha512sums="a18cc8580a4dc7db7f4d97d70e25d76e7b98b9d328a0fa4ece4176d40fc26589149d63ffc9d2638cc35003cf485b43ae6e115aa1821c662d77f234eb3c4c0a4f  uptimed-0.4.2.tar.gz
0884e9f5ace5a69b8eea4401c7f3b84f0a434f0ceb2b920919e83f318eb9e54182932de174cf1666ddddbab84c146781f3dd78571e80cc274963a72bf4f53a6b  uptimed.init"