diff options
author | Marcin Niestroj <m.niestroj@grinn-global.com> | 2017-06-26 17:19:41 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-04 00:47:05 +0200 |
commit | 0111ced7705f4038eb91a66e7f055a4994246751 (patch) | |
tree | 09328711411a94143a6417d2cba42fb2d8d5d714 /package/lua-stdlib | |
parent | 4a6168db97db6501af42e96091da3218ae64d5c1 (diff) | |
download | buildroot-0111ced7705f4038eb91a66e7f055a4994246751.tar.gz buildroot-0111ced7705f4038eb91a66e7f055a4994246751.zip |
package/lua-stdlib: new package
Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
Reviewed-by: Romain Naour <romain.naour@smile.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/lua-stdlib')
-rw-r--r-- | package/lua-stdlib/Config.in | 9 | ||||
-rw-r--r-- | package/lua-stdlib/lua-stdlib.hash | 2 | ||||
-rw-r--r-- | package/lua-stdlib/lua-stdlib.mk | 14 |
3 files changed, 25 insertions, 0 deletions
diff --git a/package/lua-stdlib/Config.in b/package/lua-stdlib/Config.in new file mode 100644 index 0000000000..1843826c24 --- /dev/null +++ b/package/lua-stdlib/Config.in @@ -0,0 +1,9 @@ +config BR2_PACKAGE_LUA_STDLIB + bool "lua-stdlib" + help + lua-stdlib is a library of modules for common programming + tasks, including list, table and functional operations, + objects, pickling, pretty-printing and command-line option + parsing. + + https://github.com/lua-stdlib/lua-stdlib/ diff --git a/package/lua-stdlib/lua-stdlib.hash b/package/lua-stdlib/lua-stdlib.hash new file mode 100644 index 0000000000..56f585db72 --- /dev/null +++ b/package/lua-stdlib/lua-stdlib.hash @@ -0,0 +1,2 @@ +# Locally calculated +sha256 5eff1af3a16470297fa5a92c9525ae593644ae9dc0e6215158298711f5d829ee stdlib-41.2.0-1.src.rock diff --git a/package/lua-stdlib/lua-stdlib.mk b/package/lua-stdlib/lua-stdlib.mk new file mode 100644 index 0000000000..f7fb0ff9c5 --- /dev/null +++ b/package/lua-stdlib/lua-stdlib.mk @@ -0,0 +1,14 @@ +################################################################################ +# +# lua-stdlib +# +################################################################################ + +LUA_STDLIB_VERSION_UPSTREAM = 41.2.0 +LUA_STDLIB_VERSION = $(LUA_STDLIB_VERSION_UPSTREAM)-1 +LUA_STDLIB_NAME_UPSTREAM = stdlib +LUA_STDLIB_SUBDIR = lua-stdlib-release-v$(LUA_STDLIB_VERSION_UPSTREAM) +LUA_STDLIB_LICENSE = MIT +LUA_STDLIB_LICENSE_FILES = $(LUA_STDLIB_SUBDIR)/COPYING + +$(eval $(luarocks-package)) |