fixed version in rockspec
[luagraph.git] / luagraph-2.0.0-1.rockspec
blobfd84416015a644e2bd8656e997b9f65071ff9330
1 package="LuaGRAPH"
2 version="2.0.0-1"
3 -- LuaDist source
4 source = {
5   tag = "2.0.0-1",
6   url = "git://github.com/hleuwer/luagraph.git"
8 description = {
9    summary = "A binding to the graphviz graph library",
10    detailed = [[
11       LuaGRAPH is a binding to the graphviz library.
12       It allows to create, manipulate, layout and render graphs
13       using the Lua programming language. 
14    ]],
15    homepage = "http://github.com/hleuwer/luagraph",
16    license = "MIT/X11"
18 supported_platforms = {
19    "linux", "macosx"
21 dependencies = {
22    "lua >= 5.1"
24 external_dependencies = {
25    GRAPHVIZ = {
26       header = "graphviz/cgraph.h"
27    }
29 build = {
30    type = "make",
31    variables = {
32       INSTALL_ROOT = "$(PREFIX)",
33       INSTALL_SHARE = "$(LUADIR)",
34       INSTALL_LIB = "$(LIBDIR)",
35       LUAINC = "$(LUA_INCDIR) -I$(GRAPHVIZ_INCDIR)",
36       LDFLAGS = "$(LIBFLAG) -L$(GRAPHVIZ_LIBDIR)",
37       GVROOT = "$(GRAPHVIZ_DIR)",
38    }