File: lua-vips-1.1-12.rockspec

package info (click to toggle)
lua-vips 1.1.12-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 772 kB
  • sloc: makefile: 2
file content (55 lines) | stat: -rw-r--r-- 1,650 bytes parent folder | download
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
53
54
55
package = "lua-vips"
version = "1.1-12"
rockspec_format = "3.0"

source = {
   url = "git://github.com/libvips/lua-vips.git",
   tag = "v1.1-12",
}

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",
       ["vips.Connection"] = "src/vips/Connection.lua",
       ["vips.Source"] = "src/vips/Source.lua",
       ["vips.Target"] = "src/vips/Target.lua",
   }
}