10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-07-03 09:55:59 +02:00
quantum_package/install/scripts/install_zlib.sh
2015-06-05 22:33:19 +02:00

16 lines
252 B
Bash
Executable File

#!/bin/bash -x
TARGET=zlib
function _install()
{
mkdir ${TARGET} || exit 1
cd ..
QPACKAGE_ROOT=$PWD
cd -
cd ${BUILD}
./configure && make || exit 1
make install prefix=$QPACKAGE_ROOT/install/${TARGET} || exit 1
}
source scripts/build.sh