From 275b59d2ad50932e81430ba79319afd8d165d22f Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Julien Date: Mon, 12 Jan 2015 17:12:51 -0500 Subject: [PATCH] master build for babeltrace --- babeltrace/babeltrace-master.sh | 53 +++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100755 babeltrace/babeltrace-master.sh diff --git a/babeltrace/babeltrace-master.sh b/babeltrace/babeltrace-master.sh new file mode 100755 index 0000000..8391abe --- /dev/null +++ b/babeltrace/babeltrace-master.sh @@ -0,0 +1,53 @@ +# Create build directory +rm -rf $WORKSPACE/build +mkdir -p $WORKSPACE/build + +PREFIX="$WORKSPACE/build" + +./bootstrap + +CONF_OPTS="" + +case "$conf" in +static) + echo "Static build" + CONF_OPTS="--enable-static --disable-shared" + ;; +python_bindings) + echo "Build with python bindings" + # We only support bindings built with Python 3 + export PYTHON="python3" + export PYTHON_CONFIG="/usr/bin/python3-config" + CONF_OPTS="--enable-python-bindings" + ;; +*) + echo "Standard build" + CONF_OPTS="" + ;; +esac + +./configure --prefix=$PREFIX $CONF_OPTS + +make +make install + +rm -rf $WORKSPACE/tap +mkdir -p $WORKSPACE/tap + +cd $WORKSPACE/tests + +# Run make check tests +prove --merge --exec '' - < $WORKSPACE/tests/tests --archive $WORKSPACE/tap/ || true + +# TAP plugin is having a hard time with .yml files. +rm -f $WORKSPACE/tap/meta.yml + +# And also with files without extension, so rename all result to *.tap +find $WORKSPACE/tap/ -type f -exec mv {} {}.tap \; + +make clean + +# Cleanup rpath and libtool .la files +find $WORKSPACE/build/bin -executable -type f -exec chrpath --delete {} \; +find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \; +find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \; -- 2.34.1