vp-build/srcpkgs/http-parser/template

28 lines
682 B
Bash

# Template file for 'http-parser'
pkgname=http-parser
version=2.7.1
revision=1
build_style=gnu-makefile
short_desc="HTTP request/response parser for c"
maintainer="Enno Boland <gottox@voidlinux.eu>"
license="GPL-3"
homepage="https://github.com/joyent/http-parser"
distfiles="$homepage/archive/v${version}.tar.gz"
checksum=70409ad324e5de2da6a0f39e859e566d497c1ff0a249c0c38a5012df91b386b3
make_build_target=library
pre_install() {
vmkdir usr/lib/pkgconfig
vmkdir usr/include
}
http-parser-devel_package() {
depends="$sourcepkg>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
}
}