From: daurnimator Date: Fri, 12 Jul 2013 22:05:50 +0000 (-0400) Subject: Add rockspec X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/23d959726ce3f10ae2dbab2141dfb16475421927?hp=c7456258113a30fcb5140d83d138e45fdc2c9c9d Add 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" ; + } ; +}