install.sh 477 B

1234567891011121314151617181920
  1. #!/bin/bash
  2. #
  3. # ./install.sh
  4. #
  5. # Download GamePlay dependencies and binaries from github releases and extracts from ZIP
  6. #
  7. # Helps prevent repo bloat due to large binary files
  8. #
  9. prefix=https://github.com/gameplay3d/GamePlay/releases/download/v3.0.0
  10. filename=gameplay-deps
  11. echo Downloading $filename.zip from $prefix...
  12. curl -# -LO $prefix/$filename.zip
  13. echo Extracting $filename.zip... please standby...
  14. unzip -q $filename.zip
  15. echo Cleaning up...
  16. rm $filename.zip
  17. echo Done.