40 lines
1,021 B
Bash
40 lines
1,021 B
Bash
# Template file for 'thttpd'
|
|
pkgname=thttpd
|
|
version=2.29
|
|
revision=1
|
|
build_style=gnu-configure
|
|
short_desc="Tiny/turbo/throttling HTTP server"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="BSD-2-Clause"
|
|
homepage="http://www.acme.com/software/thttpd/"
|
|
distfiles="http://www.acme.com/software/thttpd/thttpd-${version}.tar.gz"
|
|
checksum=99c09f47da326b1e7b5295c45549d2b65534dce27c44812cf7eef1441681a397
|
|
broken="ELF in /usr/share"
|
|
|
|
pre_configure() {
|
|
sed "s,-o bin -g bin,,g" -i Makefile.in
|
|
}
|
|
|
|
do_build() {
|
|
make CC=$CC LD=$CC CCOPT="$CFLAGS -D_DEFAULT_SOURCE"
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir usr/bin
|
|
vmkdir usr/share/man/man1
|
|
vmkdir usr/share/man/man8
|
|
|
|
make WEBGROUP=$(whoami) \
|
|
WEBDIR=${DESTDIR}/usr/share/thttpd \
|
|
BINDIR=${DESTDIR}/usr/bin \
|
|
MANDIR=${DESTDIR}/usr/share/man install
|
|
|
|
vsv thttpd
|
|
|
|
# Rename htpasswd to not conflict with apache.
|
|
mv ${DESTDIR}/usr/bin/{htpasswd,thttpd-htpasswd}
|
|
mv ${DESTDIR}/usr/share/man/man1/{htpasswd,thttpd-htpasswd}.1
|
|
|
|
sed -n '3,25p' < thttpd.c > LICENSE
|
|
vlicense LICENSE
|
|
}
|