File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /usr/bin/env lua
2+
3+ package = ' lua-git2'
4+ version = ' 0.1'
5+ source = {
6+ url = ' git://github.com/libgit2/luagit2.git' ,
7+ branch = " v0.1"
8+ }
9+ description = {
10+ summary = " LibGit2 bindings for Lua." ,
11+ detailed = ' ' ,
12+ homepage = ' https://github.com/libgit2/luagit2' ,
13+ license = ' MIT' ,
14+ maintainer = " Robert G. Jakabosky" ,
15+ }
16+ dependencies = {
17+ ' lua >= 5.1, < 5.5' ,
18+ }
19+ external_dependencies = {
20+ GIT2 = {
21+ header = " git2.h" ,
22+ library = " git2" ,
23+ }
24+ }
25+ build = {
26+ type = " builtin" ,
27+ modules = {
28+ git2 = {
29+ sources = { " src/pre_generated-git2.nobj.c" },
30+ libraries = { " git2" },
31+ incdirs = { " $(GIT2_INCDIR)" },
32+ libdirs = { " $(GIT2_LIBDIR)" },
33+ }
34+ }
35+ }
File renamed without changes.
You can’t perform that action at this time.
0 commit comments