public
Description: A complete binding to the Imlib2 image manipulation library
Homepage: http://asbradbury.org/projects/lua-imlib2/
Clone URL: git://github.com/asb/lua-imlib2.git
lua-imlib2 / lua-imlib2-dev-1.rockspec
100644 31 lines (30 sloc) 0.596 kb
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
package="lua-imlib2"
version="dev-1"
source = {
   url = "",
}
description = {
   summary = "A binding to the imlib2 image manipulation library",
   homepage = "http://asbradbury.org/projects/lua-imlib2/",
   license = "MIT/X11"
}
dependencies = {
   "lua >= 5.1"
}
external_dependencies = {
   IMLIB2 = {
      header = "Imlib2.h",
   }
}
build = {
   type = "builtin",
   modules = {
      limlib2 = {
         sources = {"limlib2.c"},
         libraries = {"Imlib2"},
         incdirs = {"$(IMLIB2_INCDIR)"},
         libdirs = {"$(IMLIB2_LIBDIR)"}
      },
      imlib2 = "imlib2.lua"
   }
}