Skip to content

Instantly share code, notes, and snippets.

@datatypevoid
Last active October 15, 2017 18:04
Show Gist options
  • Save datatypevoid/6f2713e426554a0307b76916ea5b80af to your computer and use it in GitHub Desktop.
Save datatypevoid/6f2713e426554a0307b76916ea5b80af to your computer and use it in GitHub Desktop.
Download SLikeNet (version 0.1.0), build from source, install, and clean-up. Tested on Ubuntu.
#!/usr/bin/env bash
# install-slikenet.sh
# Download SLikeNet (version 0.1.0), build from source, install, and
# clean-up.
# Tested on Ubuntu.
# Dependencies:
# - build-essential
# - cmake
# - git
# - rm
git clone https://github.com/datatypevoid/SLikeNet.git
cd ./SLikeNet
mkdir build
cd ./build
cmake ../
make
cd ../../
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment