lua-rs232: add new recipe
authorPetr Štetiar <ynezz@true.cz>
Sun, 3 Oct 2010 02:11:22 +0000 (02:11 +0000)
committerEric Bénard <eric@eukrea.com>
Mon, 4 Oct 2010 19:57:26 +0000 (21:57 +0200)
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Signed-off-by: Eric Bénard <eric@eukrea.com>
recipes/lua/lua-rs232_1.0.0.bb [new file with mode: 0644]

diff --git a/recipes/lua/lua-rs232_1.0.0.bb b/recipes/lua/lua-rs232_1.0.0.bb
new file mode 100644 (file)
index 0000000..c11e3ac
--- /dev/null
@@ -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}
+}