]> git.madduck.net Git - etc/awesome.git/blob - luatz-0.4-0.rockspec

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Release v0.4
[etc/awesome.git] / luatz-0.4-0.rockspec
1 package = "luatz"
2 version = "0.4-0"
3
4 description = {
5         summary = "library for time and date manipulation.";
6         detailed = [[
7         A lua library for time and date manipulation.
8
9         Features include:
10           - Normalisation of broken down date objects
11             - allows for complex time/date manipulation logic e.g. "what day is it in 2 days, 5 hours from now?"
12           - Conversion between locations (time zones) using your local zoneinfo database.
13           - strftime style formatting
14
15         All operations are possible without C extensions, though if available they may be used to increase accuracy.
16         ]];
17         license = "MIT";
18 }
19
20 dependencies = {
21         "lua >= 5.1";
22 }
23
24 source = {
25         url = "https://github.com/daurnimator/luatz/archive/v0.4.tar.gz";
26         dir = "luatz-0.4-0";
27 }
28
29 build = {
30         type = "builtin";
31         modules = {
32                 ["luatz.init"]      = "luatz/init.lua";
33                 ["luatz.gettime"]   = "luatz/gettime.lua";
34                 ["luatz.parse"]     = "luatz/parse.lua";
35                 ["luatz.timetable"] = "luatz/timetable.lua";
36                 ["luatz.strftime"]  = "luatz/strftime.lua";
37                 ["luatz.tzcache"]   = "luatz/tzcache.lua";
38                 ["luatz.tzfile"]    = "luatz/tzfile.lua";
39                 ["luatz.tzinfo"]    = "luatz/tzinfo.lua";
40         };
41 }