install_eduke32.sh 922 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #!/bin/bash
  2. # fail if any commands fails
  3. set -e
  4. # debug log
  5. #set -x
  6. # Set superuser privileges command if not set
  7. if [[ -z $su ]]; then
  8. export su="sudo"
  9. fi
  10. $su apt-get -y --fix-missing install build-essential nasm libgl1-mesa-dev libglu1-mesa-dev libsdl1.2-dev libsdl-mixer1.2-dev libsdl2-dev libsdl2-mixer-dev flac libflac-dev libvorbis-dev libvpx-dev libgtk2.0-dev freepats
  11. application=eduke32
  12. repository=https://voidpoint.io/terminx/eduke32.git
  13. export compile=
  14. mkdir -p ~/src
  15. cd ~/src || return
  16. if [ ! -d $application ]; then
  17. git clone $repository
  18. cd $application || return
  19. export compile=true
  20. else
  21. cd $application || return
  22. #git pull
  23. pwd
  24. git fetch
  25. LOCAL=$(git rev-parse HEAD)
  26. REMOTE=$(git rev-parse @{u})
  27. if [ ! $LOCAL = $REMOTE ]; then
  28. pwd
  29. echo "Need to pull"
  30. git pull
  31. export compile=true
  32. fi
  33. fi
  34. if [ "$compile" = "true" ]; then
  35. cd ~/src/$application || return
  36. make
  37. fi