diff --git a/c_src/buildlib.sh b/c_src/buildlib.sh deleted file mode 100755 index 8a9b983..0000000 --- a/c_src/buildlib.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -if [ `basename $PWD` != "c_src" ]; then - pushd c_src -fi - -BASEDIR="$PWD" - -WORKDIR=$BASEDIR/system -TARGETDIR=$BASEDIR/../priv - -## Check for necessary tarball -if [ ! -f "db-${BDB_VERSION}.tar.gz" ]; then - echo "Could not find db tarball. Aborting..." - exit 1 -fi - -## Make sure target directory exists -mkdir -p $TARGETDIR - -## Remove existing directories -rm -rf system db-${BDB_VERSION} - -## Untar and build everything -tar -xzf db-${BDB_VERSION}.tar.gz && \ -##(cd db-${BDB_VERSION} && patch -p0 < ../bdb-align.patch ) && \ -(cd db-${BDB_VERSION}/build_unix && \ - ../dist/configure --prefix=$WORKDIR --disable-shared && make && ranlib libdb-*.a && make install) && \ - rm -rf db-${BDB_VERSION} -