Upload version 1.0

This commit is contained in:
Thijs Schreijer
2013-05-04 17:28:38 +02:00
parent 4e0dd3f8c2
commit db859d3555
7 changed files with 1438 additions and 3 deletions

27
date-1.0-1.rockspec Normal file
View File

@@ -0,0 +1,27 @@
package = "date"
version = "1.0-1"
source = {
url = "http://luaforunix.luaforge.net/packages/date-1.0-1.tar.gz",
}
description = {
summary = "Lua Date and Time module for Lua 5.1",
detailed = [[
Date and Time string parsing; Time addition and subtraction;
Time span calculation; Supports ISO 8601 Dates.
]],
license = "MIT/X11",
homepage = "http://luaforge.net/projects/date/",
maintainer = "Steve Donovan <steve.j.donovan@gmail.com>",
}
dependencies = {
}
build = {
type = "none",
copy_directories = {'doc','samples'},
install = {
lua = {
date = "date.lua"
}
}
}