summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert G. Jakabosky <bobby@sharedrealm.com>2011-01-08 00:52:08 -0800
committerRobert G. Jakabosky <bobby@sharedrealm.com>2011-01-08 00:52:08 -0800
commit3970f56e7f4f2dc5d0fed7b28e650c4888010f0f (patch)
treef916bdb4db1dd57fbc48d1d4b05430e17f2b64b0
parentd1f12c90f79c88790b787c9d1615ec302e81b51f (diff)
downloadluagit2-3970f56e7f4f2dc5d0fed7b28e650c4888010f0f.tar.gz
Fixed broken rockspec file.
-rwxr-xr-xlua-git2-scm-0.rockspec15
1 files changed, 4 insertions, 11 deletions
diff --git a/lua-git2-scm-0.rockspec b/lua-git2-scm-0.rockspec
index c79a988..031ea43 100755
--- a/lua-git2-scm-0.rockspec
+++ b/lua-git2-scm-0.rockspec
@@ -1,6 +1,6 @@
#!/usr/bin/env lua
-package = 'luagit2'
+package = 'lua-git2'
version = 'scm-0'
source = {
url = 'git://github.com/Neopallium/luagit2.git'
@@ -17,8 +17,8 @@ dependencies = {
}
external_dependencies = {
GIT2 = {
- header = { "git2.h" },
- library = { "git2" },
+ header = "git2.h",
+ library = "git2",
}
}
build = {
@@ -28,12 +28,5 @@ build = {
sources = { "pre_generated-git2.nobj.c" },
libraries = { "git2" },
}
---[[
- type = 'cmake',
- variables = {
- INSTALL_CMOD = "$(LIBDIR)",
- CMAKE_BUILD_TYPE = "$(CMAKE_BUILD_TYPE)",
- ["CFLAGS:STRING"] = "$(CFLAGS)",
- },
---]]
+ }
}