Files
deb-python-pygit2/.travis.sh
2012-05-29 12:00:56 +02:00

13 lines
201 B
Bash
Executable File

#!/bin/sh
cd ~
git clone -b master https://github.com/libgit2/libgit2.git
cd libgit2/
mkdir build && cd build
cmake .. -DCMAKE_INSTALL_PREFIX=../_install
cmake --build . --target install
ls -la ..