summaryrefslogtreecommitdiff
path: root/lua-git2-scm-0.rockspec
diff options
context:
space:
mode:
Diffstat (limited to 'lua-git2-scm-0.rockspec')
-rwxr-xr-xlua-git2-scm-0.rockspec39
1 files changed, 39 insertions, 0 deletions
diff --git a/lua-git2-scm-0.rockspec b/lua-git2-scm-0.rockspec
new file mode 100755
index 0000000..c79a988
--- /dev/null
+++ b/lua-git2-scm-0.rockspec
@@ -0,0 +1,39 @@
+#!/usr/bin/env lua
+
+package = 'luagit2'
+version = 'scm-0'
+source = {
+ url = 'git://github.com/Neopallium/luagit2.git'
+}
+description = {
+ summary = "LibGit2 bindings for Lua.",
+ detailed = '',
+ homepage = 'https://github.com/Neopallium/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 = { "pre_generated-git2.nobj.c" },
+ libraries = { "git2" },
+ }
+--[[
+ type = 'cmake',
+ variables = {
+ INSTALL_CMOD = "$(LIBDIR)",
+ CMAKE_BUILD_TYPE = "$(CMAKE_BUILD_TYPE)",
+ ["CFLAGS:STRING"] = "$(CFLAGS)",
+ },
+--]]
+}