mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 12:43:52 +01:00
22 lines
291 B
Bash
Executable File
22 lines
291 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
TARGET=zeromq
|
|
|
|
function _install()
|
|
{
|
|
cd ..
|
|
QP_ROOT=$PWD
|
|
cd -
|
|
set -e
|
|
set -u
|
|
ORIG=$(pwd)
|
|
cd "${BUILD}"
|
|
./configure --prefix=$QP_ROOT --without-libsodium || exit 1
|
|
make -j 8 || exit 1
|
|
make install || exit 1
|
|
cd ${ORIG}
|
|
return 0
|
|
}
|
|
|
|
source scripts/build.sh
|