Added the change for BitBake the Standardized Openembedded Build System
authoremte <emte>
Fri, 17 Dec 2004 01:19:02 +0000 (01:19 +0000)
committeremte <emte@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 17 Dec 2004 01:19:02 +0000 (01:19 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/e17/libs/eet@12488 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

eet-native.bb [new file with mode: 0644]
eet.bb [new file with mode: 0644]

diff --git a/eet-native.bb b/eet-native.bb
new file mode 100644 (file)
index 0000000..bce9f86
--- /dev/null
@@ -0,0 +1,17 @@
+DESCRIPTION = "EET is a tiny library designed to write an \
+arbitary set of chunks of data to a file and optionally compress \
+each chunk (very much like a zip file) and allow fast \
+random-access reading of the file later on."
+HOMEPAGE = "http://www.enlightenment.org"
+MAINTAINER = "Carsten Haitzler (Rasterman) <raster@rasterman.com>"
+SECTION = "e/libs"
+PRIORITY = "optional"
+include eet.oe
+inherit native
+DEPENDS = "zlib-native jpeg-native"
+
+do_stage () {
+  install -m 0755 src/bin/.libs/eet ${STAGING_BINDIR}
+  oe_libinstall -C src/lib libeet ${STAGING_LIBDIR}/
+  install -m 0644 ${S}/src/lib/Eet.h ${STAGING_INCDIR}/
+}
diff --git a/eet.bb b/eet.bb
new file mode 100644 (file)
index 0000000..4e84676
--- /dev/null
+++ b/eet.bb
@@ -0,0 +1,29 @@
+DESCRIPTION = "EET is a tiny library designed to write an \
+arbitary set of chunks of data to a file and optionally compress \
+each chunk (very much like a zip file) and allow fast \
+random-access reading of the file later on."
+HOMEPAGE = "http://www.enlightenment.org"
+MAINTAINER = "Carsten Haitzler (Rasterman) <raster@rasterman.com>"
+SECTION = "e/libs"
+PRIORITY = "optional"
+DEPENDS = "zlib jpeg"
+PV = "0.9.9"
+PR = "1"
+
+do_prepsources () {
+  make clean distclean || true
+}
+addtask prepsources after do_fetch before do_unpack
+
+SRC_URI = "file://./"
+S = "${WORKDIR}/eet"
+
+inherit autotools pkgconfig binconfig
+
+do_stage () {
+  oe_libinstall -C src/lib libeet ${STAGING_LIBDIR}/
+  install -m 0644 ${S}/src/lib/Eet.h ${STAGING_INCDIR}/
+}
+
+FILES_${PN} = "${libdir}/libeet*.so*"
+FILES_${PN}-dev += "${bindir} ${libdir}/pkgconfig"