Skip to content

Instantly share code, notes, and snippets.

@jeroen
Last active December 12, 2020 19:20
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Building libgit2 on Solaris 10
# Install dependencies
sudo pkgutil -i cmake libssh2_dev libssl_dev
# Download latest release
cd ~/Desktop
curl -OL https://github.com/libgit2/libgit2/releases/download/v1.1.0/libgit2-1.1.0.tar.gz
gtar xzf libgit2-1.1.0.tar.gz
cd libgit2-1.1.0
# Patch to use C99 instead of C90
gsed -i.bak 's/90/99/g' src/CMakeLists.txt
# Build
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=/opt/csw -DBUILD_CLAR=NO -DBUILD_EXAMPLES=NO
make
# Install
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment