aboutsummaryrefslogtreecommitdiffstats
path: root/main/mini_httpd/APKBUILD
blob: af4384b2a69523cf8f3325f07086af864aaf0953 (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
48
49
50
51
52
53
54
55
56
57
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=mini_httpd
pkgver=1.26
pkgrel=2
pkgdesc="Small forking webserver with ssl and ipv6 support"
url="http://www.acme.com/software/mini_httpd/"
arch="all"
license="BSD"
pkgusers="minihttpd"
pkggroups="www-data"
depends=""
makedepends="libressl-dev"
subpackages="$pkgname-doc"
install="$pkgname.pre-install"
source="http://www.acme.com/software/$pkgname/$pkgname-$pkgver.tar.gz
	fix-cgi.patch
	$pkgname.conf
	$pkgname.initd
	$pkgname.logrotate
	"
builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"
	make CFLAGS="${CFLAGS} -DUSE_SSL" \
		LDFLAGS="${LDFLAGS}" \
		SSL_LIBS="-lssl -lcrypto" \
		|| return 1
}

package() {
	cd "$builddir"
	# does not respect DESTDIR
	make install \
		BINDIR="$pkgdir"/usr/sbin \
		MANDIR="$pkgdir"/usr/share/man

	mkdir -p "$pkgdir"/usr/bin \
		"$pkgdir"/var/log/$pkgname

	# rename sbin/htpasswd to bin/mini_htpasswd
	mv "$pkgdir"/usr/sbin/htpasswd "$pkgdir"/usr/bin/mini_htpasswd
	mv "$pkgdir"/usr/share/man/man1/htpasswd.1 \
		"$pkgdir"/usr/share/man/man1/mini_htpasswd.1

	install -Dm644 "$srcdir"/$pkgname.conf "$pkgdir"/etc/$pkgname/$pkgname.conf
	install -Dm755 "$srcdir"/$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
	install -Dm644 "$srcdir"/$pkgname.logrotate "$pkgdir"/etc/logrotate.d/$pkgname

	install -dm755 -g $pkggroups "$pkgdir"/var/www/localhost/htdocs
}

sha512sums="d29027df1c5cc3b4f4c91915a729337028372374042d663431e7f0ca0e6bd5b3d1cf1658cc6d2e6f5fa576268e06b81a12fc7b954ccb779645d267c5b180e3e3  mini_httpd-1.26.tar.gz
0ba18ce425ceb3f9fb18eeec7be2453263d76f81dfcc357fb8bd9d31bd89af69b030fa4d82bfe48441e81625a211e372aa06facd8fccacd5c0f33269a77de71f  fix-cgi.patch
1e6ef2da61c82ff5e8bb79058c188954d72c69e9d25abdd9bca51f3122aac8729bcfd6e53ae7ee40807b9250698f2cde13dad51ffed962aa07004c7f456f9cb3  mini_httpd.conf
9daa9052609136a461c912ee2b64829abf2c4c626553a12a3d45c2158be4ed0749126b5ea594fed02a6a4779d7869a073070c259ac28ca19171a168fcbb0632c  mini_httpd.initd
701c8d393963836267289cba7352caaf61925c6a7e4903f0d418245415b214e17dcab3497697dd5c9ab80f3f71c9cb5dbcc0a3706bc6be25b6031da000ee0ef0  mini_httpd.logrotate"