mirror of
https://github.com/Reuh/candran.git
synced 2025-10-27 09:59:29 +00:00
* Added @ self alias * Added short anonymous functions declaration * Made assignment operators works in every direction, except up, down, behind and below, because this would be hard to visualize. * Moved files around. * Error rewriting. * Discover the amazing can commandline tool, which includes a fantastic° REPL and program running abilities. * Added functions which plagiarize Lua. * Added 0.1.0 to the version number. * If you still love pineapple flavored bread, don't hesitate to show your feelings. Also, the tests are out of date. Sad. °: not really.
37 lines
847 B
Lua
37 lines
847 B
Lua
package = "Candran"
|
|
|
|
version = "0.3.0-1"
|
|
|
|
description = {
|
|
summary = "A simple Lua dialect and preprocessor.",
|
|
detailed = [[
|
|
Candran is a dialect of the Lua 5.3 programming language which compiles to Lua 5.3 and Lua 5.1/LuaJit. It adds a preprocessor and several useful syntax additions.
|
|
Unlike Moonscript, Candran tries to stay close to the Lua syntax.
|
|
]],
|
|
license = "MIT",
|
|
homepage = "https://github.com/Reuh/Candran",
|
|
issues_url = "https://github.com/Reuh/Candran",
|
|
maintener = "Étienne 'Reuh' Fildadut <fildadut@reuh.eu>",
|
|
--labels = {}
|
|
}
|
|
|
|
source = {
|
|
url = "git://github.com/Reuh/Candran",
|
|
tag = "v0.3.0"
|
|
}
|
|
|
|
dependencies = {
|
|
"lua >= 5.1",
|
|
"lpeglabel >= 1.0.0"
|
|
}
|
|
|
|
build = {
|
|
type = "builtin",
|
|
modules = {
|
|
candran = "candran.lua"
|
|
},
|
|
install = {
|
|
bin = { "bin/can", "bin/canc" }
|
|
}
|
|
--copy_directories = { "doc", "test" }
|
|
}
|