10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-07-03 09:55:59 +02:00
quantum_package/install/scripts/install_zeromq.sh

22 lines
291 B
Bash
Raw Normal View History

2015-11-25 11:49:42 +01:00
#!/bin/bash -x
TARGET=zeromq
function _install()
{
2015-11-25 18:59:49 +01:00
cd ..
QP_ROOT=$PWD
cd -
2015-11-25 11:49:42 +01:00
set -e
set -u
2015-11-25 13:57:40 +01:00
ORIG=$(pwd)
2015-11-25 11:49:42 +01:00
cd "${BUILD}"
2016-12-02 11:53:56 +01:00
./configure --prefix=$QP_ROOT --without-libsodium || exit 1
2015-11-25 11:49:42 +01:00
make -j 8 || exit 1
2016-12-02 11:53:56 +01:00
make install || exit 1
2015-11-25 13:57:40 +01:00
cd ${ORIG}
2015-11-25 11:49:42 +01:00
return 0
}
source scripts/build.sh