mirror of
https://github.com/Reuh/candran.git
synced 2025-10-28 02:09:30 +00:00
v0.3.1
Updated tests, added a few usefull options to #import()
This commit is contained in:
parent
83156361cd
commit
97454746b8
6 changed files with 197 additions and 53 deletions
37
rockspec/candran-0.3.1-1.rockspec
Normal file
37
rockspec/candran-0.3.1-1.rockspec
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
package = "Candran"
|
||||
|
||||
version = "0.3.1-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", -- LuaRocks 3.0
|
||||
maintainer = "Étienne 'Reuh' Fildadut <fildadut@reuh.eu>",
|
||||
--labels = {} -- LuaRocks 3.0
|
||||
}
|
||||
|
||||
source = {
|
||||
url = "git://github.com/Reuh/Candran",
|
||||
tag = "v0.3.1"
|
||||
}
|
||||
|
||||
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" }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue