wterl/c_src/build_deps.sh
Gregory Burd 021dcb10f5 Build from source pulled from a specific branch on GitHub for "basho"
related work and integration of WiredTiger rather than the latest
.tar.bz2 file they distribute.
2013-03-12 17:16:15 -04:00

33 lines
634 B
Bash
Executable file

#!/bin/bash
set -e
WT_BRANCH=basho
[ `basename $PWD` != "c_src" ] && cd c_src
BASEDIR="$PWD"
case "$1" in
clean)
rm -rf system wiredtiger
;;
*)
test -f system/lib/libwiredtiger.a && exit 0
if [ -d wiredtiger/.git ]; then
(cd wiredtiger && \
git fetch && \
git merge origin/$WT_BRANCH)
else
git clone https://github.com/wiredtiger/wiredtiger.git -b $WT_BRANCH && \
(cd wiredtiger && ./autogen.sh)
fi
(cd wiredtiger/build_posix && \
../configure --with-pic \
--prefix=$BASEDIR/system && \
make && make install)
;;
esac