From 996f7110f8bffa21e7aeab0d67d58df6fb5035b9 Mon Sep 17 00:00:00 2001 From: Petr Štetiar Date: Sun, 3 Oct 2010 02:11:22 +0000 Subject: lua-rs232: add new recipe MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Petr Štetiar Signed-off-by: Eric Bénard --- recipes/lua/lua-rs232_1.0.0.bb | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) 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 0000000000..c11e3ac269 --- /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} +} -- cgit 1.2.3-korg