vp-build/srcpkgs/libnsbmp/template

36 lines
990 B
Bash

# Template file for 'libnsbmp'
pkgname=libnsbmp
version=0.1.5
revision=1
hostmakedepends="netsurf-buildsystem"
homepage="http://www.netsurf-browser.org"
short_desc="Decoding library for BMP and ICO images in C"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="MIT"
distfiles="http://download.netsurf-browser.org/libs/releases/${pkgname}-${version}-src.tar.gz"
checksum=65cc0d81727e2ece417b7997ba2451309f07a4e5932e52019a20867640152b52
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
}
libnsbmp-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
}
}