summaryrefslogtreecommitdiff
path: root/Resources/DefaultContent/Libraries/lua-csv/rockspecs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-10-24 20:23:00 +0800
committerchai <chaifix@163.com>2021-10-24 20:23:00 +0800
commit396b51b0b9e16ba7a8f34e426e7d1332f84419bc (patch)
tree2071bf38dc1d818c8fa8309794aba3a27013209c /Resources/DefaultContent/Libraries/lua-csv/rockspecs
parent3239ba18797b1aa098056aa0c2a70e250a27a06c (diff)
+lua-csv
Diffstat (limited to 'Resources/DefaultContent/Libraries/lua-csv/rockspecs')
-rw-r--r--Resources/DefaultContent/Libraries/lua-csv/rockspecs/csv-1-1.rockspec24
-rw-r--r--Resources/DefaultContent/Libraries/lua-csv/rockspecs/csv-scm-1.rockspec23
2 files changed, 47 insertions, 0 deletions
diff --git a/Resources/DefaultContent/Libraries/lua-csv/rockspecs/csv-1-1.rockspec b/Resources/DefaultContent/Libraries/lua-csv/rockspecs/csv-1-1.rockspec
new file mode 100644
index 0000000..6f280aa
--- /dev/null
+++ b/Resources/DefaultContent/Libraries/lua-csv/rockspecs/csv-1-1.rockspec
@@ -0,0 +1,24 @@
+package = "csv"
+version = "1-1"
+source =
+{
+ url = "git://github.com/geoffleyland/lua-csv.git",
+ branch = "master",
+ tag = "v1",
+}
+description =
+{
+ summary = "CSV and other delimited file reading",
+ homepage = "http://github.com/geoffleyland/lua-csv",
+ license = "MIT/X11",
+ maintainer = "Geoff Leyland <geoff.leyland@incremental.co.nz>"
+}
+dependencies = { "lua >= 5.1" }
+build =
+{
+ type = "builtin",
+ modules =
+ {
+ csv = "lua/csv.lua",
+ },
+}
diff --git a/Resources/DefaultContent/Libraries/lua-csv/rockspecs/csv-scm-1.rockspec b/Resources/DefaultContent/Libraries/lua-csv/rockspecs/csv-scm-1.rockspec
new file mode 100644
index 0000000..29629da
--- /dev/null
+++ b/Resources/DefaultContent/Libraries/lua-csv/rockspecs/csv-scm-1.rockspec
@@ -0,0 +1,23 @@
+package = "csv"
+version = "scm-1"
+source =
+{
+ url = "git://github.com/geoffleyland/lua-csv.git",
+ branch = "master",
+}
+description =
+{
+ summary = "CSV and other delimited file reading",
+ homepage = "http://github.com/geoffleyland/lua-csv",
+ license = "MIT/X11",
+ maintainer = "Geoff Leyland <geoff.leyland@incremental.co.nz>"
+}
+dependencies = { "lua >= 5.1" }
+build =
+{
+ type = "builtin",
+ modules =
+ {
+ csv = "lua/csv.lua",
+ },
+}