summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorAlexander Jung <alexander@jung.net>2018-04-22 12:03:40 +0100
committerEdward Thomson <ethomson@edwardthomson.com>2018-06-09 18:20:53 +0100
commit5cd5f7bd3c5bf8c0d0124e2bdc9b02a27c77b2eb (patch)
tree05acd5dc23f4b4e0920bfb420934403459d30248 /package.json
parent0ad2372b4309f511c48c8e293f1eec396468595a (diff)
downloadlibgit2-5cd5f7bd3c5bf8c0d0124e2bdc9b02a27c77b2eb.tar.gz
Include clib's package reference.
This PR introduces a new top-level file, `package.json`, which enables this repository compatibility with [`clib`](https://github.com/clibs/clib), an open source C package manager. By doing this, users of `clib` can quickly include the `libgit2` library within their project.
Diffstat (limited to 'package.json')
-rw-r--r--package.json7
1 files changed, 7 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 000000000..d33f31c30
--- /dev/null
+++ b/package.json
@@ -0,0 +1,7 @@
+{
+ "name": "libgit2",
+ "version": "0.27.0",
+ "repo": "https://github.com/libgit2/libgit2",
+ "description": " A cross-platform, linkable library implementation of Git that you can use in your application.",
+ "install": "mkdir build && cd build && cmake .. && cmake --build ."
+}