summaryrefslogtreecommitdiff
path: root/script/build-libgit2.sh
diff options
context:
space:
mode:
Diffstat (limited to 'script/build-libgit2.sh')
-rwxr-xr-xscript/build-libgit2.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/script/build-libgit2.sh b/script/build-libgit2.sh
deleted file mode 100755
index 8376a15..0000000
--- a/script/build-libgit2.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-set -ex
-
-git clone --depth 1 --single-branch git://github.com/libgit2/libgit2 libgit2
-
-cd libgit2
-cmake -DTHREADSAFE=ON \
- -DBUILD_CLAR=OFF \
- -DCMAKE_INSTALL_PREFIX=$PWD/install \
- .
-
-make install