libhubbub: update to 0.2.0.
This commit is contained in:
parent
b89256ad72
commit
217f5f9123
1 changed files with 13 additions and 34 deletions
|
@ -1,56 +1,35 @@
|
|||
# Template build file for 'libhubbub'.
|
||||
pkgname=libhubbub
|
||||
version=0.1.2
|
||||
revision=2
|
||||
hostmakedepends="perl pkg-config"
|
||||
version=0.2.0
|
||||
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="davehome <davehome@redthumb.info.tm>"
|
||||
homepage="http://www.netsurf-browser.org"
|
||||
license="MIT"
|
||||
distfiles="http://download.netsurf-browser.org/libs/releases/hubbub-${version}-src.tar.gz"
|
||||
checksum=95a1d5a71055b28a8e4ce4dc8516b8f0ed691c5ee03525bf73600495657f1b52
|
||||
long_desc="
|
||||
Hubbub is an HTML5 compliant parsing library, written in C. It was
|
||||
developed as part of the NetSurf project and is available for use
|
||||
by other software under the MIT licence.
|
||||
|
||||
The HTML5 specification defines a parsing algorithm, based on the
|
||||
behaviour of mainstream browsers, which provides instructions for
|
||||
how to parse all markup, both valid and invalid. As a result, Hubbub
|
||||
parses web content well.
|
||||
|
||||
* Features
|
||||
Parses HTML, good and bad
|
||||
Simple C API
|
||||
Fast
|
||||
Character encoding detection
|
||||
Well-tested (~90% test coverage)
|
||||
Portable
|
||||
Shared library"
|
||||
|
||||
wrksrc=hubbub-${version}
|
||||
distfiles="http://download.netsurf-browser.org/libs/releases/${pkgname}-${version}-src.tar.gz"
|
||||
checksum=91c90965fdbbfb9137c7881b33736a03fc80bd16f5cd7808e1efff3d63000eaf
|
||||
|
||||
do_build() {
|
||||
make ${makejobs} COMPONENT_TYPE=lib-shared
|
||||
make ${makejobs} COMPONENT_TYPE=lib-static
|
||||
make ${makejobs} COMPONENT_TYPE=lib-shared PREFIX=/usr
|
||||
make ${makejobs} COMPONENT_TYPE=lib-static PREFIX=/usr
|
||||
}
|
||||
|
||||
do_install() {
|
||||
make ${makejobs} COMPONENT_TYPE=lib-shared \
|
||||
PREFIX=/usr DESTDIR=${DESTDIR} install
|
||||
make ${makejobs} COMPONENT_TYPE=lib-static \
|
||||
PREFIX=/usr DESTDIR=${DESTDIR} install
|
||||
make COMPONENT_TYPE=lib-shared PREFIX=/usr DESTDIR=${DESTDIR} install
|
||||
make COMPONENT_TYPE=lib-static PREFIX=/usr DESTDIR=${DESTDIR} install
|
||||
|
||||
vinstall "${wrksrc}/COPYING" 0644 "usr/share/licenses/${pkgname}"
|
||||
vinstall COPYING 0644 usr/share/licenses/${pkgname}
|
||||
}
|
||||
|
||||
libhubbub-devel_package() {
|
||||
depends="libhubbub>=${version}"
|
||||
short_desc+=" -- development files"
|
||||
depends="libparserutils-devel ${sourcepkg}>=${version}_${revision}"
|
||||
short_desc+=" - development files"
|
||||
pkg_install() {
|
||||
vmove usr/include
|
||||
vmove usr/lib/pkgconfig
|
||||
vmove "usr/lib/*.a"
|
||||
vmove "usr/lib/*.so"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue