2012-02-23 04:43:57 +00:00
|
|
|
# Template build file for 'libnsgif'.
|
|
|
|
pkgname=libnsgif
|
|
|
|
version=0.0.3
|
2012-05-23 06:14:33 +00:00
|
|
|
revision=3
|
2012-02-23 23:32:19 +00:00
|
|
|
homepage="http://www.netsurf-browser.org"
|
|
|
|
distfiles="${homepage}/projects/releases/${pkgname}-${version}-src.tar.gz"
|
2012-02-23 04:43:57 +00:00
|
|
|
short_desc="Decoding library for the GIF image file format, written in C."
|
|
|
|
maintainer="davehome <davehome@redthumb.info.tm>"
|
2012-05-19 21:05:00 +00:00
|
|
|
checksum=7a1e6873bec6814289b653c630714246adc1040cc8b250c78bb309eaf8d5f19c
|
2012-02-23 23:32:19 +00:00
|
|
|
license="MIT"
|
2012-02-23 04:43:57 +00:00
|
|
|
long_desc="
|
|
|
|
libnsgif is a decoding library for the GIF image file format, 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 GIF files"
|
|
|
|
|
|
|
|
subpackages="${pkgname}-devel"
|
|
|
|
|
|
|
|
do_build() {
|
2012-02-23 19:25:00 +00:00
|
|
|
make ${makejobs} COMPONENT_TYPE=lib-shared
|
|
|
|
make ${makejobs} COMPONENT_TYPE=lib-static
|
2012-02-23 04:43:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
2012-02-23 19:25:00 +00:00
|
|
|
make ${makejobs} COMPONENT_TYPE=lib-shared \
|
|
|
|
DESTDIR=${DESTDIR} PREFIX=/usr install
|
|
|
|
make ${makejobs} COMPONENT_TYPE=lib-static \
|
|
|
|
DESTDIR=${DESTDIR} PREFIX=/usr install
|
2012-02-23 23:32:19 +00:00
|
|
|
|
|
|
|
vinstall "${wrksrc}/COPYING" 0644 "usr/share/licenses/${pkgname}"
|
2012-02-23 04:43:57 +00:00
|
|
|
}
|