27 lines
682 B
Bash
27 lines
682 B
Bash
# Template file for 'http-parser'
|
|
pkgname=http-parser
|
|
version=2.5.0
|
|
revision=2
|
|
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=e3b4ba58f4e6ee5fbec781df020e5cb74c3a799a07f059e1e125127a0b801481
|
|
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"
|
|
}
|
|
}
|