Files
deb-python-pygit2/.travis.sh
Carlos Martín Nieto c1d831c98a Update to libgit2 v0.24
2016-03-04 17:08:55 +01:00

13 lines
233 B
Bash
Executable File

#!/bin/sh
cd ~
git clone --depth=1 -b maint/v0.24 https://github.com/libgit2/libgit2.git
cd libgit2/
mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=../_install -DBUILD_CLAR=OFF
cmake --build . --target install
ls -la ..