summaryrefslogtreecommitdiff
path: root/lua-git2-scm-0.rockspec
blob: ca8e025af60d0cffcb6762fb2047e8777b0b5e7a (plain)
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
#!/usr/bin/env lua

package	= 'lua-git2'
version	= 'scm-0'
source	= {
	url	= 'git://github.com/libgit2/luagit2.git'
}
description	= {
	summary	= "LibGit2 bindings for Lua.",
	detailed	= '',
	homepage	= 'https://github.com/libgit2/luagit2',
	license	= 'MIT',
	maintainer = "Robert G. Jakabosky",
}
dependencies = {
	'lua >= 5.1',
}
external_dependencies = {
	GIT2 = {
		header = "git2.h",
		library = "git2",
	}
}
build	= {
	type = "builtin",
	modules = {
		git2 = {
			sources = { "src/pre_generated-git2.nobj.c" },
			libraries = { "git2" },
			incdirs = { "$(GIT2_INCDIR)" },
			libdirs = { "$(GIT2_LIBDIR)" },
		}
	}
}