summaryrefslogtreecommitdiff
path: root/Resources/DefaultContent/Libraries/lua-csv/rockspecs/csv-scm-1.rockspec
diff options
context:
space:
mode:
Diffstat (limited to 'Resources/DefaultContent/Libraries/lua-csv/rockspecs/csv-scm-1.rockspec')
-rw-r--r--Resources/DefaultContent/Libraries/lua-csv/rockspecs/csv-scm-1.rockspec23
1 files changed, 23 insertions, 0 deletions
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",
+ },
+}