aboutsummaryrefslogtreecommitdiffstats
path: root/community/monkey/APKBUILD
blob: 1aa837215868fa790d147151a227e8fe71945257 (plain)
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
40
41
42
43
44
45
46
47
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
# Contributor: Bartłomiej Piotrowski <bpiotrowski@alpinelinux.org>
# Maintainer: ScrumpyJack <scrumpyjack@st.ilet.to>
pkgname=monkey
pkgver=1.6.9
pkgrel=3
pkgdesc="Monkey is a lightweight and powerful web server"
url="http://monkey-project.com/"
arch="all"
license="Apache-2.0"
makedepends="cmake jemalloc-dev bash mbedtls-dev findutils"
subpackages="$pkgname-doc $pkgname-dev"
source="http://monkey-project.com/releases/1.6/$pkgname-$pkgver.tar.gz"

builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"
	./configure \
		--musl-mode \
		--no-backtrace \
		--mbedtls-shared \
		--enable-plugins=tls,auth \
		--default-user=nobody \
		--prefix=/usr \
		--libdir=/usr/lib \
		--mandir=/usr/share/man \
		--sysconfdir=/etc/$pkgname \
		--webroot=/var/$pkgname \
		--logdir=/var/log/$pkgname \
		--pidfile=${pkgname}.pid
	make
}

check() {
	cd "$builddir"
	./build/mk_bin/monkey --help > /dev/null
	./build/plugins/auth/tools/mk_passwd --help > /dev/null

}
package() {
	cd "$builddir"
	make DESTDIR=$pkgdir install
	install -Dm 755 "$builddir/monkey.init" "$pkgdir/etc/init.d/banana"
}

sha512sums="3540a17fffe57a9d4b88b6243c634dcf6a27ed894ae2a0d5d42a4881221a9d59ae67d4c7fcf087535360d20ccdadab16947cf3a7dc6d4e864d487f598eb0ba62  monkey-1.6.9.tar.gz"