#!/bin/bash set -e build_dir=$1 install_dir=$2 install_type=$3 # Change to source directory cd sources/zlib # Install with DESTDIR and other path variables make install DESTDIR=${install_dir} echo "Installation completed successfully."