diff options
| author | 2021-12-29 15:26:31 -0500 | |
|---|---|---|
| committer | 2021-12-29 15:26:31 -0500 | |
| commit | 7dc4f75e0ca06f48966bb3f5caeb2fbbb1f748d0 (patch) | |
| tree | 9ff9c8ddf639716d2f7a56ef1ffc01d01986a8dc /rockspecs | |
| parent | optimize patok patterns (diff) | |
release 1.1-0
Diffstat (limited to 'rockspecs')
| -rw-r--r-- | rockspecs/patok-1.1-0.rockspec | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/rockspecs/patok-1.1-0.rockspec b/rockspecs/patok-1.1-0.rockspec new file mode 100644 index 0000000..cdaca7c --- /dev/null +++ b/rockspecs/patok-1.1-0.rockspec @@ -0,0 +1,24 @@ +package = "patok" +version = "1.1-0" +source = { + url = "https://github.com/CosmicToast/patok/archive/v1.1.0.zip", + dir = "patok-1.1.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', + } +} |
