# SHORT DESC: Lightweight HTTP Daemon
# LONG DESC: thttpd is a simple, small, fast and secure HTTP server. It doesn't have a lot of special features but it suffices for most uses of the web. It's faster than Apache and it has one extremely useful feature (URL-traffic-based throttling) that no other server currently has.
./configure --prefix=/usr --libdir="${libdir}" --sysconfdir=/etc --localstatedir=/var && \
make WEBGROUP=nobody && \
make install WEBGROUP=nobody || exit 1
|