[oe-commits] Dmitry Artamonow : libnsgif: add recipe for version 0.0.1

git version control git at git.openembedded.org
Sat May 30 16:31:58 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 6adb84f4f4d5b43e9ef85f156228dc2c0f04afe3
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=6adb84f4f4d5b43e9ef85f156228dc2c0f04afe3

Author: Dmitry Artamonow <mad_soft at inbox.ru>
Date:   Sat May 23 10:35:17 2009 +0000

libnsgif: add recipe for version 0.0.1

libnsgif is GIF decoding library.
Currently only Netsurf browser is using it, so we build just static
library.

Signed-off-by: Dmitry Artamonow <mad_soft at inbox.ru>
Acked-by: Tom Rini <trini at embeddedalley.com>

---

 recipes/netsurf/libnsgif_0.0.1.bb |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/recipes/netsurf/libnsgif_0.0.1.bb b/recipes/netsurf/libnsgif_0.0.1.bb
new file mode 100644
index 0000000..3b9cfc2
--- /dev/null
+++ b/recipes/netsurf/libnsgif_0.0.1.bb
@@ -0,0 +1,24 @@
+DESCRIPTION = "Libnsgif is a decoding library for the GIF image file format"
+HOMEPAGE = "http://www.netsurf-browser.org/projects/libnsgif/"
+SECTION = "libs"
+PRIORITY = "optional"
+LICENSE = "MIT"
+
+SRC_URI = "http://www.netsurf-browser.org/projects/releases/libnsgif-${PV}-src.tar.gz"
+
+inherit pkgconfig
+
+EXTRA_OEMAKE = "CURDIR=${S} DESTDIR=${D} PREFIX=${prefix} BUILDDIR=build-OE"
+
+# NOTE: we're using default buildmode here, which results in building only
+# static libraries (.a) Not a problem as libnsbmp is only used by Netsurf
+# at the moment
+
+do_stage() {
+	oe_libinstall -a -C build-OE/ libnsgif ${STAGING_LIBDIR}
+	install -m 0644 include/*.h ${STAGING_INCDIR}/
+}
+
+do_install() {
+	oe_runmake install
+}





More information about the Openembedded-commits mailing list