Building Ori

This page is for people who need help building from source.

# pacman -S scons libevent boost openssl fuse
# tar zxvf ori-X.Y.Z.tar.xz
# cd ori-X.Y.Z
# scons
To install then run:
# scons install


# yum install scons gcc-c++ boost-devel libevent-devel openssl-devel fuse-devel libuuid-devel
# tar zxvf ori-X.Y.Z.tar.xz
# cd ori-X.Y.Z
# scons
To install then run:
# scons install


# pkg install scons libevent2 boost-libs openssl fusefs-libs
# tar zxvf ori-X.Y.Z.tar.xz
# cd ori-X.Y.Z
# scons
To install then run:
# scons install


# brew install scons libevent boost-libs openssl
# tar zxvf ori-X.Y.Z.tgz
# cd ori-X.Y.Z
Before running the build you will need to set PKG_CONFIG_LIBDIR to point to the openssl pkg-config directory as brew does not place it in a standard directory. Typically you will set the environment variable to something like this:
PKG_CONFIG_LIBDIR=/usr/local/Cellar/openssl/[VERSION]/lib/pkgconfig/:[EXISTING PATHS]
# scons
To install then run:
# scons install


# apt-get install scons build-essential pkg-config
# apt-get install libboost-dev uuid-dev libfuse-dev libevent-dev libssl-dev
# tar zxvf ori-X.Y.Z.tgz
# cd ori-X.Y.Z
# scons
To install then run:
# scons install