1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- #!/bin/sh
- # AM INSTALL SCRIPT VERSION 3.
- set -u
- APP=ventoy
- SITE="ventoy/Ventoy"
- # CREATE DIRECTORIES AND ADD REMOVER
- [ -n "$APP" ] && mkdir -p "/opt/$APP/tmp" "/opt/$APP/icons" && cd "/opt/$APP/tmp" || exit 1
- printf "#!/bin/sh\nset -e\nrm -f /usr/local/bin/$APP\nrm -R -f /opt/$APP" > ../remove
- printf '\n%s' "rm -f /usr/local/share/applications/$APP-AM.desktop" >> ../remove
- chmod a+x ../remove || exit 1
- # DOWNLOAD AND PREPARE THE APP, $version is also used for updates
- version=$(curl -Ls https://api.github.com/repos/ventoy/Ventoy/releases | sed 's/[()",{} ]/\n/g' | grep -oi "https.*" | grep -i "linux.tar.gz" | head -1)
- wget "$version" || exit 1
- [ -e ./*7z ] && 7z x ./*7z && rm -f ./*7z
- [ -e ./*tar.* ] && tar fx ./*tar.* && rm -f ./*tar.*
- [ -e ./*zip ] && unzip -qq ./*zip 1>/dev/null && rm -f ./*zip
- cd ..
- if [ -d ./tmp/* 2>/dev/null ]; then mv ./tmp/*/* ./; else mv ./tmp/* ./"$APP" 2>/dev/null || mv ./tmp/* ./; fi
- rm -R -f ./tmp || exit 1
- echo "$version" > ./version
- chmod a+x ./VentoyGUI.i386 || exit 1
- # SCRIPT TO LAUNCH THE PROGRAM
- echo '#!/bin/sh
- exec /opt/'$APP'/VentoyGUI.i386' >> /usr/local/bin/"$APP"
- chmod a+x /usr/local/bin/"$APP"
- # SCRIPT TO UPDATE THE PROGRAM
- cat >> ./AM-updater << 'EOF'
- #!/bin/sh
- set -u
- APP=ventoy
- SITE="ventoy/Ventoy"
- version0=$(cat "/opt/$APP/version")
- version=$(curl -Ls https://api.github.com/repos/ventoy/Ventoy/releases | sed 's/[()",{} ]/\n/g' | grep -oi "https.*" | grep -i "linux.tar.gz" | head -1)
- [ -n "$version" ] || { echo "Error getting link"; exit 1; }
- if [ "$version" != "$version0" ]; then
- mkdir "/opt/$APP/tmp" && cd "/opt/$APP/tmp" || exit 1
- notify-send "A new version of $APP is available, please wait"
- wget "$version" || exit 1
- [ -e ./*7z ] && 7z x ./*7z && rm -f ./*7z
- [ -e ./*tar.* ] && tar fx ./*tar.* && rm -f ./*tar.*
- [ -e ./*zip ] && unzip -qq ./*zip 1>/dev/null && rm -f ./*zip
- cd ..
- if [ -d ./tmp/* 2>/dev/null ]; then mv --backup=t ./tmp/*/* ./; else mv --backup=t ./tmp/* ./"$APP" 2>/dev/null || mv --backup=t ./tmp/* ./; fi
- chmod a+x ./VentoyGUI.i386 || exit 1
- echo "$version" > ./version
- rm -R -f ./tmp ./*~
- notify-send "$APP is updated!"
- else
- echo "Update not needed!"
- fi
- EOF
- chmod a+x ./AM-updater || exit 1
- # ICON
- mkdir -p icons
- wget https://www.ventoy.net/static/img/ventoy.png -O ./icons/"$APP" 2> /dev/null
- # LAUNCHER
- echo "[Desktop Entry]
- Name=Ventoy
- Comment=Open source tool to create bootable USB drive for ISO/WIM/IMG/VHD(x)/EFI files.
- Exec=$APP
- Icon=/opt/$APP/icons/$APP
- Type=Application
- Categories=System;" > /usr/local/share/applications/"$APP"-AM.desktop
|