luaposix: bump to version 34.0.1

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Francois Perrad 2017-09-24 09:59:24 +02:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent fc8213041e
commit 1e75a5de3c
2 changed files with 21 additions and 5 deletions

View File

@ -1,2 +1,2 @@
# Locally calculated
sha256 e66262f5b7fe1c32c65f17a5ef5ffb31c4d1877019b4870a5d373e2ab6526a21 luaposix-33.4.0.tar.gz
sha256 ba0bc343783fc33958cd02a68cdbfd65430152d9f297f7ed92678b1a305bd5d7 luaposix-34.0.1.tar.gz

View File

@ -4,11 +4,27 @@
#
################################################################################
LUAPOSIX_VERSION = 33.4.0
LUAPOSIX_VERSION = 34.0.1
LUAPOSIX_SITE = $(call github,luaposix,luaposix,release-v$(LUAPOSIX_VERSION))
LUAPOSIX_LICENSE = MIT
LUAPOSIX_LICENSE_FILES = COPYING
LUAPOSIX_LICENSE_FILES = LICENSE
LUAPOSIX_DEPENDENCIES = luainterpreter host-lua
LUAPOSIX_CONF_OPTS = --libdir="/usr/lib/lua/$(LUAINTERPRETER_ABIVER)" --datarootdir="/usr/share/lua/$(LUAINTERPRETER_ABIVER)"
$(eval $(autotools-package))
define LUAPOSIX_BUILD_CMDS
(cd $(@D); \
$(LUA_RUN) build-aux/luke \
CC="$(TARGET_CC)" \
CFLAGS="$(TARGET_CFLAGS)" \
LUA_INCDIR=$(STAGING_DIR)/usr/include \
)
endef
define LUAPOSIX_INSTALL_TARGET_CMDS
(cd $(@D); \
$(LUA_RUN) build-aux/luke install \
INST_LIBDIR="$(TARGET_DIR)/usr/lib/lua/$(LUAINTERPRETER_ABIVER)" \
INST_LUADIR="$(TARGET_DIR)/usr/share/lua/$(LUAINTERPRETER_ABIVER)" \
)
endef
$(eval $(generic-package))