libnsgif: update to 0.1.0.

This commit is contained in:
Juan RP 2014-02-04 21:04:40 +01:00
parent 6a88ec7f1f
commit a48a134a68

View File

@ -1,41 +1,34 @@
# Template build file for 'libnsgif'. # Template build file for 'libnsgif'.
pkgname=libnsgif pkgname=libnsgif
version=0.0.3 version=0.1.0
revision=4 revision=1
short_desc="Decoding library for the GIF image file format, written in C." hostmakedepends="netsurf-buildsystem"
short_desc="Decoding library for the GIF image file format, written in C"
maintainer="davehome <davehome@redthumb.info.tm>" maintainer="davehome <davehome@redthumb.info.tm>"
homepage="http://www.netsurf-browser.org" homepage="http://www.netsurf-browser.org"
license="MIT" license="MIT"
distfiles="http://download.netsurf-browser.org/libs/releases/${pkgname}-${version}-src.tar.gz" distfiles="http://download.netsurf-browser.org/libs/releases/${pkgname}-${version}-src.tar.gz"
checksum=7a1e6873bec6814289b653c630714246adc1040cc8b250c78bb309eaf8d5f19c checksum=e7dc7ee887fefc19e7c7985c5a2b057870e0fa3dd0dcfc1fdb4e98da1f36593c
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"
do_build() { do_build() {
make ${makejobs} COMPONENT_TYPE=lib-shared make ${makejobs} COMPONENT_TYPE=lib-shared PREFIX=/usr
make ${makejobs} COMPONENT_TYPE=lib-static make ${makejobs} COMPONENT_TYPE=lib-static PREFIX=/usr
} }
do_install() { do_install() {
make ${makejobs} COMPONENT_TYPE=lib-shared \ make COMPONENT_TYPE=lib-shared PREFIX=/usr DESTDIR=${DESTDIR} install
DESTDIR=${DESTDIR} PREFIX=/usr install make COMPONENT_TYPE=lib-static PREFIX=/usr DESTDIR=${DESTDIR} install
make ${makejobs} COMPONENT_TYPE=lib-static \
DESTDIR=${DESTDIR} PREFIX=/usr install
vinstall "${wrksrc}/COPYING" 0644 "usr/share/licenses/${pkgname}" vinstall COPYING 0644 usr/share/licenses/${pkgname}
} }
libnsgif-devel_package() { libnsgif-devel_package() {
depends="libnsgif>=${version}" depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" -- development files" short_desc+=" - development files"
pkg_install() { pkg_install() {
vmove usr/include vmove usr/include
vmove usr/lib/pkgconfig vmove usr/lib/pkgconfig
vmove "usr/lib/*.a" vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
} }
} }