2020-04-04 18:47:24 +00:00
|
|
|
package = "ftcsv"
|
2023-02-20 17:07:42 +00:00
|
|
|
version = "1.3.0-1"
|
2020-04-04 18:47:24 +00:00
|
|
|
|
|
|
|
source = {
|
|
|
|
url = "git://github.com/FourierTransformer/ftcsv.git",
|
2023-02-20 17:07:42 +00:00
|
|
|
tag = "1.3.0"
|
2020-04-04 18:47:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
description = {
|
|
|
|
summary = "A fast pure lua csv library (parser and encoder)",
|
|
|
|
detailed = [[
|
|
|
|
ftcsv is a fast and easy to use csv library for lua. It can read in CSV files,
|
|
|
|
do some basic transformations (rename fields) and can create the csv format.
|
|
|
|
It supports UTF-8, header-less CSVs, and maintaining correct line endings for
|
|
|
|
multi-line fields.
|
|
|
|
|
|
|
|
It supports loading an entire CSV file into memory and parsing it as well as
|
|
|
|
buffered reading of a CSV file.
|
|
|
|
]],
|
|
|
|
homepage = "https://github.com/FourierTransformer/ftcsv",
|
|
|
|
maintainer = "Shakil Thakur <shakil.thakur@gmail.com>",
|
|
|
|
license = "MIT"
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies = {
|
2020-10-29 02:46:04 +00:00
|
|
|
"lua >= 5.1",
|
2020-04-04 18:47:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
build = {
|
|
|
|
type = "builtin",
|
|
|
|
modules = {
|
|
|
|
["ftcsv"] = "ftcsv.lua"
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|