summaryrefslogtreecommitdiff
path: root/repo/http-parser/http-parser.xibuild
blob: 7255229c1456800511844be4e47035436e58af0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

NAME="http-parser"
DESC="HTTP request/response parser for C"

MAKEDEPS=""

PKG_VER=2.9.4
SOURCE="https://github.com/nodejs/http-parser/archive/v$PKG_VER/http-parser-$PKG_VER.tar.gz"

build() {
	make library
}

check() {
	make test
}

package() {
	make install DESTDIR="$PKG_DEST" PREFIX="/usr"
}