mirror of
https://github.com/LCPQ/quantum_package
synced 2024-11-03 20:54:00 +01:00
18 lines
251 B
Bash
Executable File
18 lines
251 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
TARGET=gmp
|
|
|
|
function _install()
|
|
{
|
|
rm -rf -- ${TARGET}
|
|
mkdir ${TARGET} || exit 1
|
|
cd ..
|
|
QP_ROOT=$PWD
|
|
cd -
|
|
cd ${BUILD}
|
|
./configure --prefix=$QP_ROOT && make -j 8 || exit 1
|
|
make install || exit 1
|
|
}
|
|
|
|
source scripts/build.sh
|