# Template build file for 'libnsgif'.
pkgname=libparserutils
version=0.1.1
revision=4
homepage="http://www.netsurf-browser.org"
distfiles="${homepage}/projects/releases/${pkgname}-${version}-src.tar.gz"
makedepends="perl"
short_desc="Library for building efficient parsers, written in C."
maintainer="davehome <davehome@redthumb.info.tm>"
checksum=2d3f1887d3027b7df1fcacd5f74aba16d3c22a86c169816cd712857a1be0aaf3
license="MIT"
long_desc="
 LibParserUtils is a library for building efficient parsers, written
 in C. It was developed as part of the NetSurf project and is available
 for use by other software under the MIT licence.

 * Features
 	No mandatory dependencies (iconv() implementation optional for
 		enhanced charset support)
 	A number of built-in character set converters
 	Mapping of character set names to/from MIB enum values
 	UTF-8 and UTF-16 (host endian) support functions
 	Various simple data structures (resizeable buffer, stack, vector)
 	A UTF-8 input stream
 	Simple C API
 	Portable
 	Shared library"

subpackages="${pkgname}-devel"


do_build() {
	make ${makejobs} COMPONENT_TYPE=lib-shared
	make ${makejobs} COMPONENT_TYPE=lib-static
}

do_install() {
	make ${makejobs} COMPONENT_TYPE=lib-shared \
		PREFIX=/usr DESTDIR=${DESTDIR} install
	make ${makejobs} COMPONENT_TYPE=lib-static \
		PREFIX=/usr DESTDIR=${DESTDIR} install

	vinstall "${wrksrc}/COPYING" 0644 "usr/share/licenses/${pkgname}"
}