From 8ce6a9af7acf1fb53f246487fd2c7b350d0bc159 Mon Sep 17 00:00:00 2001 From: =?utf8?q?K=C3=A9vin=20THIERRY?= Date: Wed, 11 Jun 2014 13:01:50 +0200 Subject: [PATCH] Update lua recipe MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Add pre/post install/uninstall scripts. Change-Id: I6f6ad3860107c27d77f28842a303777b7b5b99b8 Signed-off-by: Kévin THIERRY --- recipes-tizen/lua/lua.inc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/recipes-tizen/lua/lua.inc b/recipes-tizen/lua/lua.inc index d7d3a25..5190084 100644 --- a/recipes-tizen/lua/lua.inc +++ b/recipes-tizen/lua/lua.inc @@ -94,6 +94,18 @@ do_install() { } +pkg_postinst_liblua() { + #!/bin/sh -e + + /sbin/ldconfig +} + +pkg_postrm_liblua() { + #!/bin/sh -e + + /sbin/ldconfig +} + PACKAGES += " liblua " lua_files = "" -- 2.7.4