diff options
author | Assaf Inbal <shmuelzon@gmail.com> | 2013-05-20 15:56:38 +0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-06-16 22:02:14 +0200 |
commit | 5b81dd47703fd099e2b257ed0680ddc39524ace5 (patch) | |
tree | 4c8377c12aee27bac11bc6c10faef399e1af36b0 /package | |
parent | 07278078a65559400458d7ad07f18f93f5e20ebf (diff) | |
download | buildroot-novena-5b81dd47703fd099e2b257ed0680ddc39524ace5.tar.gz buildroot-novena-5b81dd47703fd099e2b257ed0680ddc39524ace5.zip |
luabitop: New package
Lua library for binary operations
[Peter: fix header, use TARGET_CONFIGURE_OPTS]
Signed-off-by: Assaf Inbal <shmuelzon@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package')
-rw-r--r-- | package/Config.in | 1 | ||||
-rw-r--r-- | package/luabitop/Config.in | 7 | ||||
-rw-r--r-- | package/luabitop/luabitop.mk | 27 |
3 files changed, 35 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in index fa6442678..f218f65e5 100644 --- a/package/Config.in +++ b/package/Config.in @@ -314,6 +314,7 @@ menu "LUA libraries/modules" source "package/cgilua/Config.in" source "package/copas/Config.in" source "package/coxpcall/Config.in" +source "package/luabitop/Config.in" source "package/luacjson/Config.in" source "package/luaexpat/Config.in" source "package/luafilesystem/Config.in" diff --git a/package/luabitop/Config.in b/package/luabitop/Config.in new file mode 100644 index 000000000..83a85b16c --- /dev/null +++ b/package/luabitop/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_LUABITOP + bool "luabitop" + help + Lua BitOp is a C extension module for Lua 5.1/5.2 which adds bitwise + operations on numbers. + + http://bitop.luajit.org diff --git a/package/luabitop/luabitop.mk b/package/luabitop/luabitop.mk new file mode 100644 index 000000000..c61e826c0 --- /dev/null +++ b/package/luabitop/luabitop.mk @@ -0,0 +1,27 @@ +################################################################################ +# +# luabitop +# +################################################################################ + +LUABITOP_VERSION = 1.0.2 +LUABITOP_SOURCE = LuaBitOp-$(LUABITOP_VERSION).tar.gz +LUABITOP_SITE = http://bitop.luajit.org/download +LUABITOP_LICENSE = MIT +LUABITOP_LICENSE_FILES = README +LUABITOP_DEPENDENCIES = lua + +define LUABITOP_BUILD_CMDS + $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) +endef + +define LUABITOP_INSTALL_TARGET_CMDS + mkdir -p $(TARGET_DIR)/usr/lib/lua + $(INSTALL) -p $(@D)/bit.so $(TARGET_DIR)/usr/lib/lua +endef + +define LUABITOP_CLEAN_CMDS + $(MAKE) -C $(@D) clean +endef + +$(eval $(generic-package)) |