Files
deb-python-pygit2/.travis.sh
Carlos Martín Nieto 81520c9c62 Update to libgit2 v0.23
2015-07-06 18:49:20 +02:00

13 lines
233 B
Bash
Executable File

#!/bin/sh
cd ~
git clone --depth=1 -b maint/v0.23 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 ..