forked from tarantool/rocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
icu-date-1.1.1-1.rockspec
38 lines (34 loc) · 985 Bytes
/
icu-date-1.1.1-1.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package = "icu-date"
version = "1.1.1-1"
source = {
url = "git://github.com/tarantool/icu-date.git",
tag = '1.1.1',
}
description = {
summary = "LuaJIT FFI bindings to ICU date/time",
detailed = [[
Module provides a robust date and time library
that correctly and efficiently handles
complexities of dealing with dates and times:
- date and time formatting
- date and time parsing
- date and time arithmetic (adding and subtracting)
- time zones
- daylight saving time
- leap years
- ISO 8601 formatting and parsing
]],
homepage = "https://github.com/tarantool/icu-date",
license = "MIT",
}
dependencies = {
'lua == 5.1',
}
build = {
type = "builtin",
modules = {
["icu-date.init"] = "icu-date.lua",
["icu-date.detect_icu_version_suffix"] = "icu-date/detect_icu_version_suffix.lua",
["icu-date.ffi_cdef"] = "icu-date/ffi_cdef.lua",
},
}