[oe] [PATCH 2/3] lua-rs232: add new recipe

Petr Štetiar ynezz at true.cz
Sun Oct 3 12:11:22 UTC 2010


Signed-off-by: Petr Štetiar <ynezz at true.cz>
---
 recipes/lua/lua-rs232_1.0.0.bb |   26 ++++++++++++++++++++++++++
 1 files changed, 26 insertions(+), 0 deletions(-)
 create mode 100644 recipes/lua/lua-rs232_1.0.0.bb

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}
+}
-- 
1.7.0.4





More information about the Openembedded-devel mailing list