Skip to content

Instantly share code, notes, and snippets.

@kylog
Last active August 29, 2015 14:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kylog/7cff4f2eac5683de32d9 to your computer and use it in GitHub Desktop.
Save kylog/7cff4f2eac5683de32d9 to your computer and use it in GitHub Desktop.
FreeBSD installs for native facter
# these packages are new enough
pkg install git
pkg install cmake
pkg install boost-libs
# build/install yaml-cpp b/c the one provided by 'pkg' is too old
pkg install wget
wget https://yaml-cpp.googlecode.com/files/yaml-cpp-0.5.1.tar.gz
tar xzvf https://yaml-cpp.googlecode.com/files/yaml-cpp-0.5.1.tar.gz
cd yaml-cpp
mkdir build
cd build
cmake -DBUILD_SHARED_LIBS=ON ..
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment