blob: 5b09682ff796ad05c2e008b046d08194928a2b5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/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"
build() {
./configure --prefix=/usr
make
}
package () {
make DESTDIR=$PKG_DEST install
}
|