[oe-commits] Petr Štetiar : lua-rs232: add new recipe

git version control git at git.openembedded.org
Mon Oct 4 19:58:45 UTC 2010


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

Author: Petr Štetiar <ynezz at true.cz>
Date:   Sun Oct  3 02:11:22 2010 +0000

lua-rs232: add new recipe

Signed-off-by: Petr Štetiar <ynezz at true.cz>
Signed-off-by: Eric Bénard <eric at eukrea.com>

---

 recipes/lua/lua-rs232_1.0.0.bb |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)

diff --git a/recipes/lua/lua-rs232_1.0.0.bb b/recipes/lua/lua-rs232_1.0.0.bb
new file mode 100644
index 0000000..c11e3ac
--- /dev/null
+++ b/recipes/lua/lua-rs232_1.0.0.bb
@@ -0,0 +1,26 @@
+DESCRIPTION = "Lua bindings for librs232 - library for serial communications over RS-232 (serial port)"
+HOMEPAGE = "http://github.com/ynezz/librs232"
+LICENSE = "MIT"
+
+DEPENDS += "lua5.1"
+RDEPENDS_${PN} += "librs232"
+
+SRC_URI = "git://github.com/ynezz/librs232.git;protocol=git"
+
+SRCREV = "ecad1e03104bc9bf348e0c5e571660f270c86421"
+S = "${WORKDIR}/git/"
+
+inherit autotools
+
+LUA_LIB_DIR = "/usr/local/lib/lua/5.1"
+LUA_LIB = "luars232.so"
+
+PACKAGES = "${PN} ${PN}-dbg"
+FILES_${PN} = "${LUA_LIB_DIR}/${LUA_LIB}"
+FILES_${PN}-dbg = "${LUA_LIB_DIR}/.debug/${LUA_LIB}"
+
+do_install_append() {
+	install -d ${D}${LUA_LIB_DIR}/.debug
+	install -m 0644 ${D}${libdir}/${LUA_LIB} ${D}${LUA_LIB_DIR}/${LUA_LIB}
+	install -m 0644 ${D}${libdir}/${LUA_LIB} ${D}${LUA_LIB_DIR}/.debug/${LUA_LIB}
+}





More information about the Openembedded-commits mailing list