install.sh 502 B

123456789101112131415161718192021
  1. #!/bin/bash
  2. #
  3. # ./install.sh
  4. #
  5. # Download GamePlay external dependencies and binaries and extract from ZIP
  6. #
  7. # Helps prevent repo bloat due to large binary files since they can
  8. # be hosted separately.
  9. #
  10. prefix=https://github.com/blackberry/GamePlay/releases/download/v1.7.0
  11. filename=gameplay-deps
  12. echo Downloading $filename.zip from $prefix...
  13. curl -# -O $prefix/$filename.zip
  14. echo Extracting $filename.zip... please standby...
  15. unzip -q $filename.zip
  16. echo Cleaning up...
  17. rm $filename.zip
  18. echo Done.