void-packages/srcpkgs/http-parser/template
2015-10-30 06:08:02 +01:00

28 lines
682 B
Bash

# Template file for 'http-parser'
pkgname=http-parser
version=2.6.0
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=a11c5ccb9808496f3de66d54ea1f89271919923307e31c75de2a3a77a6754c97
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"
}
}