forked from tarantool/rocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ldecnumber-scm-1.rockspec
44 lines (38 loc) · 1.11 KB
/
ldecnumber-scm-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
39
40
41
42
43
44
package = 'ldecnumber'
version = 'scm-1'
source = {
url = 'git://github.com/tarantool/ldecnumber.git';
branch = 'master';
}
description = {
summary = "Decimal Arithmetic package for Tarantool";
detailed = [[
The ldecNumber package implements the General Decimal
Arithmetic Specification. This specification defines
a decimal arithmetic which meets the requirements of
commercial, financial, and human-oriented applications.
It also matches the decimal arithmetic in the IEEE 754
Standard for Floating Point Arithmetic.
]];
homepage = 'https://github.com/tarantool/ldecnumber';
maintainer = "Michael Filonenko <[email protected]>";
license = 'ICU1.8.1';
}
dependencies = {
'lua == 5.1';
}
external_dependencies = {
TARANTOOL = {
header = 'tarantool/module.h';
};
}
build = {
type = 'cmake';
variables = {
CMAKE_BUILD_TYPE="RelWithDebInfo";
TARANTOOL_DIR="$(TARANTOOL_DIR)";
TARANTOOL_INSTALL_LIBDIR="$(LIBDIR)";
TARANTOOL_INSTALL_LUADIR="$(LUADIR)";
};
}
-- vim: syntax=lua ts=4 sts=4 sw=4 et