ctf-tools/snowman/install
2016-08-24 23:21:47 +10:00

11 lines
231 B
Bash
Executable file

#!/bin/bash -e
INST_DIR=$PWD
[ -e snowman ] || git clone --depth 1 https://github.com/yegord/snowman
cd snowman
mkdir build
cd build
cmake -D CMAKE_INSTALL_PREFIX=$INST_DIR ../src
cmake --build .
cmake --build . --target install