# Template build file for 'libnsgif'. pkgname=libparserutils version=0.1.1 revision=5 makedepends="perl" short_desc="Library for building efficient parsers, written in C." maintainer="davehome " homepage="http://www.netsurf-browser.org" license="MIT" distfiles="http://download.netsurf-browser.org/libs/releases/${pkgname}-${version}-src.tar.gz" checksum=2d3f1887d3027b7df1fcacd5f74aba16d3c22a86c169816cd712857a1be0aaf3 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" 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}" } libparserutils-devel_package() { depends="libparserutils>=${version}" short_desc+=" -- development files" pkg_install() { vmove usr/include vmove usr/lib/pkgconfig vmove "usr/lib/*.a" } }