summaryrefslogtreecommitdiff
path: root/Data/BuiltIn/Libraries/lbase64/rockspec/base64-1.5-1.rockspec
diff options
context:
space:
mode:
Diffstat (limited to 'Data/BuiltIn/Libraries/lbase64/rockspec/base64-1.5-1.rockspec')
-rw-r--r--Data/BuiltIn/Libraries/lbase64/rockspec/base64-1.5-1.rockspec20
1 files changed, 20 insertions, 0 deletions
diff --git a/Data/BuiltIn/Libraries/lbase64/rockspec/base64-1.5-1.rockspec b/Data/BuiltIn/Libraries/lbase64/rockspec/base64-1.5-1.rockspec
new file mode 100644
index 0000000..f25c7b4
--- /dev/null
+++ b/Data/BuiltIn/Libraries/lbase64/rockspec/base64-1.5-1.rockspec
@@ -0,0 +1,20 @@
+package = "base64"
+version = "1.5-1"
+source = {
+ url = "git+https://github.com/iskolbin/lbase64",
+ tag = "v1.5.1",
+}
+description = {
+ summary = "Pure Lua base64 encoder/decoder",
+ detailed = [[
+Pure Lua [base64](https://en.wikipedia.org/wiki/Base64) encoder/decoder. Works with Lua 5.1+ and LuaJIT. Fallbacks to pure Lua bit operations if bit/bit32/native bit operators are not available.]],
+ homepage = "https://github.com/iskolbin/lbase64",
+ license = "MIT/Public Domain"
+}
+dependencies = {}
+build = {
+ type = "builtin",
+ modules = {
+ base64 = "base64.lua",
+ }
+}