| 1234567891011121314151617 |
- #!/bin/bash
- set -e
- # Zlib install script
- # Installs zlib to the destination directory
- build_dir=$1
- install_dir=$2
- install_type=$3
- # With simpleBuildEnvironment flag, we're already in build directory
- echo "Installing zlib to ${install_dir}..."
- # Install to the destination directory
- make DESTDIR=${install_dir} install
- echo "Installation complete."
|