From 546edc04dbe53d95a329584c230dfe954c1cf3e1 Mon Sep 17 00:00:00 2001 From: Jack Date: Wed, 22 Jun 2016 15:08:45 -0400 Subject: [PATCH] os x build script --- reproducable-build => reproducible_build.sh | 0 reproducible_build_osx.sh | 72 +++++++++++++++++++++ 2 files changed, 72 insertions(+) rename reproducable-build => reproducible_build.sh (100%) create mode 100644 reproducible_build_osx.sh diff --git a/reproducable-build b/reproducible_build.sh similarity index 100% rename from reproducable-build rename to reproducible_build.sh diff --git a/reproducible_build_osx.sh b/reproducible_build_osx.sh new file mode 100644 index 000000000..f56f125b9 --- /dev/null +++ b/reproducible_build_osx.sh @@ -0,0 +1,72 @@ +brew update +brew install autoconf +brew install automake +brew install libtool +brew install pkg-config +brew install protobuf +brew install gmp + +mkdir dependencies +cd dependencies +export LBRYCRD_DEPENDENCIES="`pwd`" + +#download, patch, and build bdb +wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz +tar xf db-4.8.30.NC.tar.gz +export BDB_PREFIX="`pwd`/bdb" +curl -OL https://raw.github.com/narkoleptik/os-x-berkeleydb-patch/master/atomic.patch +patch db-4.8.30.NC/dbinc/atomic.h < atomic.patch +cd db-4.8.30.NC/build_unix +../dist/configure --prefix=$BDB_PREFIX --enable-cxx --disable-shared --with-pic +make +make install + +#download and build openssl +cd $LBRYCRD_DEPENDENCIES +wget https://www.openssl.org/source/openssl-1.0.1p.tar.gz +tar xf openssl-1.0.1p.tar.gz +export OPENSSL_PREFIX="`pwd`/openssl_build" +mkdir $OPENSSL_PREFIX +mkdir $OPENSSL_PREFIX/ssl +cd openssl-1.0.1p +./Configure --prefix=$OPENSSL_PREFIX --openssldir=$OPENSSL_PREFIX/ssl -fPIC darwin64-x86_64-cc no-shared no-dso no-engines +make +make install +export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:${OPENSSL_PREFIX}/lib/pkgconfig/" + +#download and build boost +cd $LBRYCRD_DEPENDENCIES +wget http://sourceforge.net/projects/boost/files/boost/1.59.0/boost_1_59_0.tar.bz2/download -O boost_1_59_0.tar.bz2 +tar xf boost_1_59_0.tar.bz2 +export BOOST_ROOT="`pwd`/boost_1_59_0" +cd boost_1_59_0 +./bootstrap.sh +./b2 link=static cxxflags=-fPIC stage + +#download and build libevent +cd $LBRYCRD_DEPENDENCIES +mkdir libevent_build +git clone https://github.com/libevent/libevent.git +export LIBEVENT_PREFIX="`pwd`/libevent_build" +cd libevent +./autogen.sh +./configure --prefix=$LIBEVENT_PREFIX --enable-static --disable-shared --with-pic LDFLAGS="-L${OPENSSL_PREFIX}/lib/" CPPFLAGS="-I${OPENSSL_PREFIX}/include" +make +make install +export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:${LIBEVENT_PREFIX}/lib/pkgconfig/" + +#download and build lbrycrd +cd $LBRYCRD_DEPENDENCIES +git clone https://github.com/lbryio/lbrycrd +cd lbrycrd +git checkout real2 +./autogen.sh +./configure --without-gui --enable-cxx --enable-static --disable-shared --with-pic \ + LDFLAGS="-L${OPENSSL_PREFIX}/lib/ -L${BDB_PREFIX}/lib/ -L${LIBEVENT_PREFIX}/lib/ -static-libstdc++" \ + CPPFLAGS="-I${OPENSSL_PREFIX}/include -I${BDB_PREFIX}/include -I${LIBEVENT_PREFIX}/include/" + +make +strip src/lbrycrdd +strip src/lbrycrd-cli +strip src/lbrycrd-tx +strip src/test/test-lbrycrd \ No newline at end of file