blob: ab76812b833e2cf4f4d4a3fdb3a1c99951aadcb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
MAKEDEPS="make "
DEPS="openssl mime-types "
PKG_VER=1.21
SOURCE=https://www.kraxel.org/releases/webfs/webfs-$PKG_VER.tar.gz
DESC="A simple instant server for static http content"
prepare () {
mv GNUmakefile Makefile
}
build() {
make
}
package () {
make prefix=/usr DESTDIR=$PKG_DEST install
}
|