From 23d959726ce3f10ae2dbab2141dfb16475421927 Mon Sep 17 00:00:00 2001 From: daurnimator Date: Fri, 12 Jul 2013 18:05:50 -0400 Subject: [PATCH 1/1] Add rockspec --- luatz-scm-0.rockspec | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 luatz-scm-0.rockspec diff --git a/luatz-scm-0.rockspec b/luatz-scm-0.rockspec new file mode 100644 index 0000000..73b4dff --- /dev/null +++ b/luatz-scm-0.rockspec @@ -0,0 +1,31 @@ +package = "luatz" +version = "scm-0" + +description = { + summary = "This is a lua library for time and date manipulation." ; + detailed = [[ + This is a lua library for time and date manipulation. + + Importantly, it allows you to convert time between locations (time zones). + ]] ; + license = "MIT/X11" ; +} + +dependencies = { + "lua ~> 5.1" ; +} + +source = { + url = "git://github.com/daurnimator/luatz.git" ; +} + +build = { + type = "builtin" ; + modules = { + ["luatz.init"] = "src/init.lua" ; + ["luatz.gettime"] = "src/gettime.lua" ; + ["luatz.tzcache"] = "src/tzcache.lua" ; + ["luatz.tzfile"] = "src/tzfile.lua" ; + ["luatz.tzinfo"] = "src/tzinfo.lua" ; + } ; +} -- 2.39.2