void-packages/srcpkgs/libnsgif/template
2016-02-20 12:21:28 +01:00

36 lines
1,013 B
Bash

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