blob: 6f280aa6cd9e0f55904633104cdb9d552b05e17d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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",
},
}
|