10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-07-23 19:27:34 +02:00
quantum_package/install/scripts/install_zeromq.sh

23 lines
326 B
Bash
Executable File

#!/bin/bash -x
TARGET=zeromq
function _install()
{
cd ..
QP_ROOT=$PWD
cd -
set -e
set -u
ORIG=$(pwd)
cd "${BUILD}"
./autogen.sh
./configure --prefix=$QP_ROOT --without-libsodium --disable-libunwind || exit 1
make -j 8 || exit 1
make install || exit 1
cd ${ORIG}
return 0
}
source scripts/build.sh