1
0
Fork 0
mirror of https://github.com/Reuh/candran.git synced 2025-10-27 17:59:30 +00:00

Candran v0.14

This commit is contained in:
Étienne Fildadut 2021-05-17 15:37:20 +02:00
parent 012b5c1d5a
commit 66f1a5a3c2
2 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1,40 @@
rockspec_format = "3.0"
package = "candran"
version = "0.14.0-1"
description = {
summary = "A simple Lua dialect and preprocessor.",
detailed = [[
Candran is a dialect of the Lua 5.4 programming language which compiles to Lua 5.4, Lua 5.3, Lua 5.2, LuaJIT and Lua 5.1 compatible code. It adds several useful syntax additions which aims to make Lua faster and easier to write, and a simple preprocessor.
Unlike Moonscript, Candran tries to stay close to the Lua syntax, and existing Lua code should be able to run on Candran unmodified.
]],
license = "MIT",
homepage = "https://github.com/Reuh/candran",
issues_url = "https://github.com/Reuh/candran",
maintainer = "Étienne 'Reuh' Fildadut <fildadut@reuh.eu>",
labels = { "lpeg", "commandline" }
}
source = {
url = "git://github.com/Reuh/candran",
tag = "v0.14.0"
}
dependencies = {
"lua >= 5.1",
"lpeglabel >= 1.5.0",
"linenoise >= 0.9",
"luacheck >= 0.23.0"
}
build = {
type = "builtin",
modules = {
candran = "candran.lua"
},
install = {
bin = { "bin/can", "bin/canc", "bin/cancheck" }
}
}