16 lines
426 B
Plaintext
16 lines
426 B
Plaintext
|
# Description: A simple HTTP server for static content
|
|||
|
# URL: http://linux.bytesex.org/misc/webfs.html
|
|||
|
# Maintainer: Per Lid<69>n <per@fukt.bth.se>
|
|||
|
# Depends on: openssl
|
|||
|
|
|||
|
name=webfs
|
|||
|
version=1.21
|
|||
|
release=2
|
|||
|
source=(http://dl.bytesex.org/releases/webfs/webfs-$version.tar.gz httpd)
|
|||
|
|
|||
|
build() {
|
|||
|
cd $name-$version
|
|||
|
make prefix=$PKG/usr mandir=$PKG/usr/man install
|
|||
|
install -D -m 0755 ../httpd $PKG/etc/rc.d/httpd
|
|||
|
}
|