# Template build file for 'libnsbmp'.
pkgname=libnsbmp
version=0.0.3
revision=4
homepage="http://www.netsurf-browser.org"
short_desc="Decoding library for BMP and ICO images in C."
maintainer="davehome <davehome@redthumb.info.tm>"
license="MIT"
distfiles="http://download.netsurf-browser.org/libs/releases/${pkgname}-${version}-src.tar.gz"
checksum=6d8802cef5fac21528442cc303c05cef576f75138bf227e12e755c071cd57387
long_desc="
 libnsbmp is a decoding library for BMP and ICO image file formats, 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
 	Decodes BMP files
 	Decodes ICO files"

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

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

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

libnsbmp-devel_package() {
	depends="libnsbmp>=${version}"
	short_desc+=" -- development files"
	pkg_install() {
		vmove usr/include
		vmove usr/lib/pkgconfig
		vmove "usr/lib/*.a"
	}
}

libnsbmp_package() {
	pkg_install() {
		vmove usr
	}
}