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