void-packages/srcpkgs/libnsgif/template
2014-04-28 13:57:52 +02:00

35 lines
1 KiB
Plaintext

# Template build file for 'libnsgif'.
pkgname=libnsgif
version=0.1.1
revision=1
hostmakedepends="netsurf-buildsystem"
short_desc="Decoding library for the GIF image file format, written in C"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://www.netsurf-browser.org"
license="MIT"
distfiles="http://download.netsurf-browser.org/libs/releases/${pkgname}-${version}-src.tar.gz"
checksum=d450ea0a9da234486e997248b30a86524f75f1021ca67017b5597423cf6c0a15
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
vinstall COPYING 0644 usr/share/licenses/${pkgname}
}
libnsgif-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"
}
}