10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-02 03:15:29 +02:00
quantum_package/install/scripts/install_gmp.sh

18 lines
251 B
Bash
Raw Normal View History

2016-12-02 11:53:56 +01:00
#!/bin/bash -x
TARGET=gmp
function _install()
{
rm -rf -- ${TARGET}
mkdir ${TARGET} || exit 1
cd ..
QP_ROOT=$PWD
cd -
cd ${BUILD}
2016-12-02 12:07:19 +01:00
./configure --prefix=$QP_ROOT && make -j 8 || exit 1
2016-12-02 11:53:56 +01:00
make install || exit 1
}
source scripts/build.sh