aboutsummaryrefslogtreecommitdiff
path: root/rockspecs
diff options
context:
space:
mode:
authorChloe Kudryavtsev <toast@toast.cafe>2021-12-24 09:03:02 -0500
committerChloe Kudryavtsev <toast@toast.cafe>2021-12-24 09:03:02 -0500
commitd2d7bb633f27fc0a44efa32fd2e376825974845a (patch)
tree25d32de0357d088e3a9a5298fd623a19db11323a /rockspecs
parentoops, these weren't supposed to be here (diff)
add rockspec
Diffstat (limited to 'rockspecs')
-rw-r--r--rockspecs/patok-1.0-0.rockspec24
1 files changed, 24 insertions, 0 deletions
diff --git a/rockspecs/patok-1.0-0.rockspec b/rockspecs/patok-1.0-0.rockspec
new file mode 100644
index 0000000..41e7e84
--- /dev/null
+++ b/rockspecs/patok-1.0-0.rockspec
@@ -0,0 +1,24 @@
+package = "patok"
+version = "1.0-0"
+source = {
+ url = "https://github.com/CosmicToast/patok/archive/v1.0.0.zip",
+ dir = "patok-1.0.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',
+ }
+}