-
Notifications
You must be signed in to change notification settings - Fork 10
/
lua-vips-1.1-11.rockspec
52 lines (45 loc) · 1.46 KB
/
lua-vips-1.1-11.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
45
46
47
48
49
50
51
52
package = "lua-vips"
version = "1.1-11"
rockspec_format = "3.0"
source = {
url = "git://github.com/libvips/lua-vips.git",
tag = "v1.1-11",
}
description = {
summary = "A fast image processing library with low memory needs.",
detailed = [[
This rock implements a binding for the libvips image processing library.
It is usually faster and needs less memory than similar libraries.
For use with standard Lua, the dependency luaffi-tkl is used as a drop-in
replacement for LuaJIT's ffi module.
]],
homepage = "https://github.com/libvips/lua-vips",
license = "MIT",
labels = { "image" }
}
dependencies = {
"lua >= 5.1, < 5.5", -- standard Lua or LuaJIT >= 2.0
"luaffi-tkl >= 1.0" -- provided by VM with LuaJIT, use `luarocks config rocks_provided.luaffi-tkl 2.1-1` in that case
}
test_dependencies = {
"busted"
}
test = {
type = "busted"
}
build = {
type = "builtin",
modules = {
vips = "src/vips.lua",
["vips.cdefs"] = "src/vips/cdefs.lua",
["vips.verror"] = "src/vips/verror.lua",
["vips.version"] = "src/vips/version.lua",
["vips.log"] = "src/vips/log.lua",
["vips.gvalue"] = "src/vips/gvalue.lua",
["vips.vobject"] = "src/vips/vobject.lua",
["vips.voperation"] = "src/vips/voperation.lua",
["vips.Image"] = "src/vips/Image.lua",
["vips.Image_methods"] = "src/vips/Image_methods.lua",
["vips.Interpolate"] = "src/vips/Interpolate.lua"
}
}