AM-SAMPLE-AppBundle 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #!/bin/sh
  2. # AM INSTALL SCRIPT VERSION 3.5
  3. set -u
  4. APP=SAMPLE
  5. SITE="REPLACETHIS"
  6. # CREATE DIRECTORIES AND ADD REMOVER
  7. [ -n "$APP" ] && mkdir -p "/opt/$APP/tmp" "/opt/$APP/icons" && cd "/opt/$APP/tmp" || exit 1
  8. printf "#!/bin/sh\nset -e\nrm -f /usr/local/bin/$APP\nrm -R -f /opt/$APP" > ../remove
  9. printf '\n%s' "rm -f /usr/local/share/applications/$APP-AM.desktop" >> ../remove
  10. chmod a+x ../remove || exit 1
  11. # DOWNLOAD AND PREPARE THE APP, $version is also used for updates
  12. version=$(FUNCTION)
  13. wget "$version" || exit 1
  14. # Keep this space in sync with other installation scripts
  15. # Use tar fx ./*tar* here for example in this line in case a compressed file is downloaded.
  16. cd ..
  17. mv ./tmp/*pp*undle ./"$APP"
  18. # Keep this space in sync with other installation scripts
  19. rm -R -f ./tmp || exit 1
  20. echo "$version" > ./version
  21. chmod a+x ./"$APP" || exit 1
  22. # LINK TO PATH
  23. ln -s "/opt/$APP/$APP" "/usr/local/bin/$APP"
  24. # SCRIPT TO UPDATE THE PROGRAM
  25. cat >> ./AM-updater << 'EOF'
  26. #!/bin/sh
  27. set -u
  28. APP=SAMPLE
  29. SITE="REPLACETHIS"
  30. version0=$(cat "/opt/$APP/version")
  31. version=$(FUNCTION)
  32. [ -n "$version" ] || { echo "Error getting link"; exit 1; }
  33. if [ "$version" != "$version0" ]; then
  34. mkdir "/opt/$APP/tmp" && cd "/opt/$APP/tmp" || exit 1
  35. notify-send "A new version of $APP is available, please wait"
  36. wget "$version" || exit 1
  37. # Use tar fx ./*tar* here for example in this line in case a compressed file is downloaded.
  38. cd ..
  39. mv --backup=t ./tmp/*pp*undle ./"$APP"
  40. chmod a+x ./"$APP" || exit 1
  41. echo "$version" > ./version
  42. rm -R -f ./*zs-old ./*.part ./tmp ./*~
  43. notify-send "$APP is updated!"
  44. else
  45. echo "Update not needed!"
  46. fi
  47. EOF
  48. chmod a+x ./AM-updater || exit 1
  49. # LAUNCHER & ICON
  50. ./"$APP" --pbundle_desktop | base64 -d > ./"$APP".desktop
  51. ./"$APP" --pbundle_pngIcon | base64 -d > ./DirIcon
  52. sed -i "s#Exec=[^ ]*#Exec=$APP#g; s#Icon=.*#Icon=/opt/$APP/icons/$APP#g" ./"$APP".desktop
  53. mv ./"$APP".desktop /usr/local/share/applications/"$APP"-AM.desktop && mv ./DirIcon ./icons/"$APP" 1>/dev/null