install.sh 239 B

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