void-packages/srcpkgs/libhubbub/template

38 lines
1.1 KiB
Bash

# Template file for 'libhubbub'
pkgname=libhubbub
version=0.3.6
revision=1
hostmakedepends="perl pkg-config netsurf-buildsystem"
makedepends="libxslt-devel json-c-devel libparserutils-devel"
short_desc="HTML5 compliant parsing library, written in C"
maintainer="Orphaned <orphan@voidlinux.org>"
homepage="http://www.netsurf-browser.org"
license="MIT"
distfiles="http://download.netsurf-browser.org/libs/releases/${pkgname}-${version}-src.tar.gz"
checksum=d756c795c1a0e08beec4acd68364ac4477960d62fffa3b60da05f5a7763f7bf4
CFLAGS="-Wno-error"
do_build() {
make ${makejobs} COMPONENT_TYPE=lib-shared PREFIX=/usr
make ${makejobs} COMPONENT_TYPE=lib-static PREFIX=/usr
}
do_install() {
make COMPONENT_TYPE=lib-shared PREFIX=/usr DESTDIR=${DESTDIR} install
make COMPONENT_TYPE=lib-static PREFIX=/usr DESTDIR=${DESTDIR} install
vlicense COPYING
}
libhubbub-devel_package() {
depends="libparserutils-devel>=0.2.0 ${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
}
}