diff options
| author | 2022-01-17 19:29:35 -0500 | |
|---|---|---|
| committer | 2022-01-17 19:29:35 -0500 | |
| commit | b96e4b3fc331f0f36e880f992d2bd4842bed19b9 (patch) | |
| tree | 803fcf68252e18e529a1df7ba3c87176c8f618a5 /rockspecs | |
| parent | add eof to README (diff) | |
release 1.2.0v1.2.0
Diffstat (limited to 'rockspecs')
| -rw-r--r-- | rockspecs/patok-1.2.0-rockspec | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/rockspecs/patok-1.2.0-rockspec b/rockspecs/patok-1.2.0-rockspec new file mode 100644 index 0000000..8712865 --- /dev/null +++ b/rockspecs/patok-1.2.0-rockspec @@ -0,0 +1,24 @@ +package = "patok" +version = "1.2-0" +source = { + url = "https://github.com/CosmicToast/patok/archive/v1.2.0.zip", + dir = "patok-1.2.0", +} +description = { + homepage = "https://github.com/CosmicToast/patok", + license = "Unlicense", + summary = "The Lua Pattern Tokenizer", + detailed = [[ + A tokenizer for lua that utilizes lua patterns and a parser combinator to consume its output. + ]], +} +dependencies = { + "lua >= 5.1" +} +build = { + type = "builtin", + modules = { + patok = 'patok.lua', + piecemeal = 'piecemeal.lua', + } +} |
