mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-11-16 15:27:46 +00:00
fix: update tools for standalone and bundle version
This commit is contained in:
parent
9690940bd3
commit
e6741e832d
18 changed files with 36 additions and 27 deletions
|
@ -7,15 +7,23 @@
|
||||||
[[ -f macos.zip ]]; check "macos zip"
|
[[ -f macos.zip ]]; check "macos zip"
|
||||||
unzip linux.zip; unzip macos.zip; unzip windows.zip
|
unzip linux.zip; unzip macos.zip; unzip windows.zip
|
||||||
mv gupaxx.exe skel/windows/Gupaxx.exe
|
mv gupaxx.exe skel/windows/Gupaxx.exe
|
||||||
|
mv gupaxx_b.exe skel/windows_b/Gupaxx.exe
|
||||||
tar -xf linux.tar
|
tar -xf linux.tar
|
||||||
mv gupaxx skel/linux/gupaxx
|
mv gupaxx skel/linux/gupaxx
|
||||||
|
mv gupaxx_b skel/linux_b/gupaxx
|
||||||
tar -xf macos.tar
|
tar -xf macos.tar
|
||||||
mv Gupaxx-macos-x64.app/Contents/Info.plist skel/macos-x64/Gupaxx.app/Contents/Info.plist
|
mv Gupaxx-macos-x64.app/Contents/Info.plist skel/macos-x64/Gupaxx.app/Contents/Info.plist
|
||||||
mv Gupaxx-macos-x64.app/Contents/MacOS/gupaxx skel/macos-x64/Gupaxx.app/Contents/MacOS/gupaxx
|
mv Gupaxx-macos-x64.app/Contents/MacOS/gupaxx skel/macos-x64/Gupaxx.app/Contents/MacOS/gupaxx
|
||||||
mv Gupaxx-macos-arm64.app/Contents/MacOS/gupaxx skel/macos-arm64/Gupaxx.app/Contents/MacOS/gupaxx
|
mv Gupaxx-macos-x64.app_b/Contents/Info.plist skel/macos-x64_b/Gupaxx.app/Contents/Info.plist
|
||||||
|
mv Gupaxx-macos-x64.app_b/Contents/MacOS/gupaxx skel/macos-x64_b/Gupaxx.app/Contents/MacOS/gupaxx
|
||||||
mv Gupaxx-macos-arm64.app/Contents/Info.plist skel/macos-arm64/Gupaxx.app/Contents/Info.plist
|
mv Gupaxx-macos-arm64.app/Contents/Info.plist skel/macos-arm64/Gupaxx.app/Contents/Info.plist
|
||||||
|
mv Gupaxx-macos-arm64.app/Contents/MacOS/gupaxx skel/macos-arm64/Gupaxx.app/Contents/MacOS/gupaxx
|
||||||
|
mv Gupaxx-macos-arm64.app_b/Contents/Info.plist skel/macos-arm64_b/Gupaxx.app/Contents/Info.plist
|
||||||
|
mv Gupaxx-macos-arm64.app_b/Contents/MacOS/gupaxx skel/macos-arm64_b/Gupaxx.app/Contents/MacOS/gupaxx
|
||||||
rm -r Gupaxx-macos-x64.app
|
rm -r Gupaxx-macos-x64.app
|
||||||
rm -r Gupaxx-macos-arm64.app
|
rm -r Gupaxx-macos-arm64.app
|
||||||
|
rm -r Gupaxx-macos-x64.app_b
|
||||||
|
rm -r Gupaxx-macos-arm64.app_b
|
||||||
rm linux.zip; rm macos.zip; rm windows.zip
|
rm linux.zip; rm macos.zip; rm windows.zip
|
||||||
# windows unzip only the exe so not tar to delete.
|
# windows unzip only the exe so not tar to delete.
|
||||||
rm linux.tar; rm macos.tar
|
rm linux.tar; rm macos.tar
|
||||||
|
|
|
@ -30,75 +30,76 @@ cd skel; check "CD into skel"
|
||||||
# and that the naming schemes are correct
|
# and that the naming schemes are correct
|
||||||
title "Linux folder check"
|
title "Linux folder check"
|
||||||
[[ -f linux/gupaxx ]]; check "linux/gupaxx"
|
[[ -f linux/gupaxx ]]; check "linux/gupaxx"
|
||||||
[[ -f linux/p2pool/p2pool ]]; check "linux/p2pool/p2pool"
|
[[ -f linux_b/gupaxx ]]; check "linux_b/gupaxx"
|
||||||
[[ -f linux/xmrig/xmrig ]]; check "linux/xmrig/xmrig"
|
[[ -f linux_b/p2pool/p2pool ]]; check "linux_b/p2pool/p2pool"
|
||||||
|
[[ -f linux_b/xmrig/xmrig ]]; check "linux_b/xmrig/xmrig"
|
||||||
title "macOS-x64 folder check"
|
title "macOS-x64 folder check"
|
||||||
[[ -d macos-x64/Gupaxx.app ]]; check "macos-x64/Gupaxx.app"
|
[[ -d macos-x64/Gupaxx.app ]]; check "macos-x64/Gupaxx.app"
|
||||||
[[ -f macos-x64/Gupaxx.app/Contents/MacOS/p2pool/p2pool ]]; check "macos-x64/p2pool/p2pool"
|
[[ -d macos-x64_b/Gupaxx.app ]]; check "macos-x64_b/Gupaxx.app"
|
||||||
[[ -f macos-x64/Gupaxx.app/Contents/MacOS/xmrig/xmrig ]]; check "macos-x64/xmrig/xmrig"
|
[[ -f macos-x64_b/Gupaxx.app/Contents/MacOS/p2pool/p2pool ]]; check "macos-x64_b/p2pool/p2pool"
|
||||||
|
[[ -f macos-x64_b/Gupaxx.app/Contents/MacOS/xmrig/xmrig ]]; check "macos-x64_b/xmrig/xmrig"
|
||||||
title "macOS-arm64 folder check"
|
title "macOS-arm64 folder check"
|
||||||
[[ -d macos-arm64/Gupaxx.app ]]; check "macos-arm64/Gupaxx.app"
|
[[ -d macos-arm64/Gupaxx.app ]]; check "macos-arm64/Gupaxx.app"
|
||||||
[[ -f macos-arm64/Gupaxx.app/Contents/MacOS/p2pool/p2pool ]]; check "macos-arm64/p2pool/p2pool"
|
[[ -d macos-arm64_b/Gupaxx.app ]]; check "macos-arm64_b/Gupaxx.app"
|
||||||
[[ -f macos-arm64/Gupaxx.app/Contents/MacOS/xmrig/xmrig ]]; check "macos-arm64/xmrig/xmrig"
|
[[ -f macos-arm64_b/Gupaxx.app/Contents/MacOS/p2pool/p2pool ]]; check "macos-arm64_b/p2pool/p2pool"
|
||||||
|
[[ -f macos-arm64_b/Gupaxx.app/Contents/MacOS/xmrig/xmrig ]]; check "macos-arm64_b/xmrig/xmrig"
|
||||||
title "Windows folder check"
|
title "Windows folder check"
|
||||||
[[ -f windows/Gupaxx.exe ]]; check "windows/Gupaxx.exe"
|
[[ -f windows/Gupaxx.exe ]]; check "windows/Gupaxx.exe"
|
||||||
[[ -f windows/P2Pool/p2pool.exe ]]; check "windows/P2Pool/p2pool.exe"
|
[[ -f windows_b/Gupaxx.exe ]]; check "windows_b/Gupaxx.exe"
|
||||||
[[ -f windows/XMRig/xmrig.exe ]]; check "windows/XMRig/xmrig.exe"
|
[[ -f windows_b/P2Pool/p2pool.exe ]]; check "windows_b/P2Pool/p2pool.exe"
|
||||||
|
[[ -f windows_b/XMRig/xmrig.exe ]]; check "windows_b/XMRig/xmrig.exe"
|
||||||
|
|
||||||
|
|
||||||
# Tar Linux Bundle
|
# Tar Linux Bundle
|
||||||
title "Tar Linux"
|
title "Tar Linux"
|
||||||
# give execution permission
|
# give execution permission
|
||||||
chmod +x linux/gupaxx
|
chmod +x linux/gupaxx
|
||||||
|
chmod +x linux_b/gupaxx
|
||||||
chmod +x linux/p2pool/p2pool
|
chmod +x linux/p2pool/p2pool
|
||||||
chmod +x linux/xmrig/xmrig
|
chmod +x linux/xmrig/xmrig
|
||||||
mv linux "gupaxx-$NEW_VER-linux-x64-bundle"; check "linux -> gupaxx-$NEW_VER-linux-x64-bundle"
|
mv linux_b "gupaxx-$NEW_VER-linux-x64-bundle"; check "linux -> gupaxx-$NEW_VER-linux-x64-bundle"
|
||||||
tar -czpf "gupaxx-${NEW_VER}-linux-x64-bundle.tar.gz" "gupaxx-$NEW_VER-linux-x64-bundle" --owner=lm --group=lm ; check "tar linux-bundle"
|
tar -czpf "gupaxx-${NEW_VER}-linux-x64-bundle.tar.gz" "gupaxx-$NEW_VER-linux-x64-bundle" --owner=lm --group=lm ; check "tar linux-bundle"
|
||||||
# Tar Linux Standalone
|
# Tar Linux Standalone
|
||||||
mv "gupaxx-$NEW_VER-linux-x64-bundle" "gupaxx-$NEW_VER-linux-x64-standalone"; check "gupaxx-$NEW_VER-linux-x64-bundle -> gupaxx-$NEW_VER-linux-x64-standalone"
|
mv linux "gupaxx-$NEW_VER-linux-x64-standalone"
|
||||||
rm -r "gupaxx-$NEW_VER-linux-x64-standalone/p2pool"; check "rm gupaxx-$NEW_VER-linux-x64-standalone/p2pool"
|
|
||||||
rm -r "gupaxx-$NEW_VER-linux-x64-standalone/xmrig"; check "rm gupaxx-$NEW_VER-linux-x64-standalone/xmrig"
|
|
||||||
tar -czpf "gupaxx-${NEW_VER}-linux-x64-standalone.tar.gz" "gupaxx-$NEW_VER-linux-x64-standalone" --owner=lm --group=lm ; check "tar linux-standalone"
|
tar -czpf "gupaxx-${NEW_VER}-linux-x64-standalone.tar.gz" "gupaxx-$NEW_VER-linux-x64-standalone" --owner=lm --group=lm ; check "tar linux-standalone"
|
||||||
# Remove dir
|
# Remove dir
|
||||||
rm -r "gupaxx-$NEW_VER-linux-x64-standalone"; check "rm linux dir"
|
rm -r "gupaxx-$NEW_VER-linux-x64-standalone"; check "rm linux dir"
|
||||||
|
rm -r "gupaxx-$NEW_VER-linux-x64-bundle"; check "rm linux_b dir"
|
||||||
|
|
||||||
# x64
|
# x64
|
||||||
# Tar macOS Bundle
|
# Tar macOS Bundle
|
||||||
title "Tar macOS-x64"
|
title "Tar macOS-x64"
|
||||||
mv macos-x64 "gupaxx-$NEW_VER-macos-x64-bundle"; check "macos-x64 -> gupaxx-$NEW_VER-macos-x64-bundle"
|
mv macos-x64_b "gupaxx-$NEW_VER-macos-x64-bundle"; check "macos-x64_b -> gupaxx-$NEW_VER-macos-x64-bundle"
|
||||||
tar -czpf "gupaxx-${NEW_VER}-macos-x64-bundle.tar.gz" "gupaxx-$NEW_VER-macos-x64-bundle" --owner=lm --group=lm ; check "tar macos-bundle"
|
tar -czpf "gupaxx-${NEW_VER}-macos-x64-bundle.tar.gz" "gupaxx-$NEW_VER-macos-x64-bundle" --owner=lm --group=lm ; check "tar macos-bundle"
|
||||||
# Tar macOS Standalone
|
# Tar macOS Standalone
|
||||||
mv "gupaxx-$NEW_VER-macos-x64-bundle" "gupaxx-$NEW_VER-macos-x64-standalone"; check "gupaxx-$NEW_VER-macos-x64-bundle -> gupaxx-$NEW_VER-macos-x64-standalone"
|
mv macos-x64 "gupaxx-$NEW_VER-macos-x64-standalone"; check "macos-x64 -> gupaxx-$NEW_VER-macos-x64-standalone"
|
||||||
rm -r "gupaxx-$NEW_VER-macos-x64-standalone/Gupaxx.app/Contents/MacOS/p2pool"; check "rm gupaxx-$NEW_VER-macos-x64-standalone/Gupaxx.app/Contents/MacOS/p2pool"
|
|
||||||
rm -r "gupaxx-$NEW_VER-macos-x64-standalone/Gupaxx.app/Contents/MacOS/xmrig"; check "rm gupaxx-$NEW_VER-macos-x64-standalone/Gupaxx.app/Contents/MacOS/xmrig/xmrig"
|
|
||||||
tar -czpf "gupaxx-${NEW_VER}-macos-x64-standalone.tar.gz" "gupaxx-$NEW_VER-macos-x64-standalone" --owner=lm --group=lm ; check "tar macos-x64-standalone"
|
tar -czpf "gupaxx-${NEW_VER}-macos-x64-standalone.tar.gz" "gupaxx-$NEW_VER-macos-x64-standalone" --owner=lm --group=lm ; check "tar macos-x64-standalone"
|
||||||
# Remove dir
|
# Remove dir
|
||||||
rm -r "gupaxx-$NEW_VER-macos-x64-standalone"; check "rm macos-x64 dir"
|
rm -r "gupaxx-$NEW_VER-macos-x64-standalone"; check "rm macos-x64 dir"
|
||||||
|
rm -r "gupaxx-$NEW_VER-macos-x64-bundle"; check "rm macos-x64_b dir"
|
||||||
|
|
||||||
# ARM
|
# ARM
|
||||||
# Tar macOS Bundle
|
# Tar macOS Bundle
|
||||||
title "Tar macOS-arm64"
|
title "Tar macOS-arm64"
|
||||||
mv macos-arm64 "gupaxx-$NEW_VER-macos-arm64-bundle"; check "macos-arm64 -> gupaxx-$NEW_VER-macos-arm64-bundle"
|
mv macos-arm64_b "gupaxx-$NEW_VER-macos-arm64-bundle"; check "macos-arm64_b -> gupaxx-$NEW_VER-macos-arm64-bundle"
|
||||||
tar -czpf "gupaxx-${NEW_VER}-macos-arm64-bundle.tar.gz" "gupaxx-$NEW_VER-macos-arm64-bundle" --owner=lm --group=lm ; check "tar macos-arm64-bundle"
|
tar -czpf "gupaxx-${NEW_VER}-macos-arm64-bundle.tar.gz" "gupaxx-$NEW_VER-macos-arm64-bundle" --owner=lm --group=lm ; check "tar macos-bundle"
|
||||||
# Tar macOS Standalone
|
# Tar macOS Standalone
|
||||||
mv "gupaxx-$NEW_VER-macos-arm64-bundle" "gupaxx-$NEW_VER-macos-arm64-standalone"; check "gupaxx-$NEW_VER-macos-arm64-bundle -> gupaxx-$NEW_VER-macos-arm64-standalone"
|
mv macos-arm64 "gupaxx-$NEW_VER-macos-arm64-standalone"; check "macos-arm64 -> gupaxx-$NEW_VER-macos-arm64-standalone"
|
||||||
rm -r "gupaxx-$NEW_VER-macos-arm64-standalone/Gupaxx.app/Contents/MacOS/p2pool"; check "rm gupaxx-$NEW_VER-macos-arm64-standalone/Gupaxx.app/Contents/MacOS/p2pool"
|
|
||||||
rm -r "gupaxx-$NEW_VER-macos-arm64-standalone/Gupaxx.app/Contents/MacOS/xmrig"; check "rm gupaxx-$NEW_VER-macos-arm64-standalone/Gupaxx.app/Contents/MacOS/xmrig/xmrig"
|
|
||||||
tar -czpf "gupaxx-${NEW_VER}-macos-arm64-standalone.tar.gz" "gupaxx-$NEW_VER-macos-arm64-standalone" --owner=lm --group=lm ; check "tar macos-arm64-standalone"
|
tar -czpf "gupaxx-${NEW_VER}-macos-arm64-standalone.tar.gz" "gupaxx-$NEW_VER-macos-arm64-standalone" --owner=lm --group=lm ; check "tar macos-arm64-standalone"
|
||||||
# Remove dir
|
# Remove dir
|
||||||
rm -r "gupaxx-$NEW_VER-macos-arm64-standalone"; check "rm macos dir"
|
rm -r "gupaxx-$NEW_VER-macos-arm64-standalone"; check "rm macos-arm64 dir"
|
||||||
|
rm -r "gupaxx-$NEW_VER-macos-arm64-bundle"; check "rm macos-arm64_b dir"
|
||||||
|
|
||||||
# Zip Windows Bundle
|
# Zip Windows Bundle
|
||||||
title "Zip Windows"
|
title "Zip Windows"
|
||||||
mv windows "gupaxx-$NEW_VER-windows-x64-bundle"; check "windows -> gupaxx-$NEW_VER-windows-x64-bundle"
|
mv windows_b "gupaxx-$NEW_VER-windows-x64-bundle"; check "windows_b -> gupaxx-$NEW_VER-windows-x64-bundle"
|
||||||
zip -qr "gupaxx-${NEW_VER}-windows-x64-bundle.zip" "gupaxx-$NEW_VER-windows-x64-bundle"; check "zip windows-bundle"
|
zip -qr "gupaxx-${NEW_VER}-windows-x64-bundle.zip" "gupaxx-$NEW_VER-windows-x64-bundle"; check "zip windows-bundle"
|
||||||
# Zip Windows Standalone
|
# Zip Windows Standalone
|
||||||
mv "gupaxx-$NEW_VER-windows-x64-bundle" "gupaxx-$NEW_VER-windows-x64-standalone"; check "gupaxx-$NEW_VER-windows-x64-bundle -> gupaxx-$NEW_VER-windows-x64-standalone"
|
mv windows "gupaxx-$NEW_VER-windows-x64-standalone"; check "windows -> gupaxx-$NEW_VER-windows-x64-standalone"
|
||||||
rm -r "gupaxx-$NEW_VER-windows-x64-standalone/P2Pool"; check "rm gupaxx-$NEW_VER-windows-x64-standalone/p2pool"
|
|
||||||
rm -r "gupaxx-$NEW_VER-windows-x64-standalone/XMRig"; check "rm gupaxx-$NEW_VER-windows-x64-standalone/xmrig"
|
|
||||||
zip -qr "gupaxx-${NEW_VER}-windows-x64-standalone.zip" "gupaxx-$NEW_VER-windows-x64-standalone"; check "zip windows-standalone"
|
zip -qr "gupaxx-${NEW_VER}-windows-x64-standalone.zip" "gupaxx-$NEW_VER-windows-x64-standalone"; check "zip windows-standalone"
|
||||||
# Remove dir
|
# Remove dir
|
||||||
rm -r "gupaxx-$NEW_VER-windows-x64-standalone"; check "rm windows dir"
|
rm -r "gupaxx-$NEW_VER-windows-x64-standalone"; check "rm windows dir"
|
||||||
|
rm -r "gupaxx-$NEW_VER-windows-x64-bundle"; check "rm windows_b dir"
|
||||||
|
|
||||||
# SHA256SUMS + Sign
|
# SHA256SUMS + Sign
|
||||||
title "Hash + Sign"
|
title "Hash + Sign"
|
||||||
|
|
0
utils/skel/linux/p2pool/p2pool → utils/skel/linux_b/gupaxx
Normal file → Executable file
0
utils/skel/linux/p2pool/p2pool → utils/skel/linux_b/gupaxx
Normal file → Executable file
0
utils/skel/macos-arm64/Gupaxx.app/Contents/MacOS/xmrig/xmrig → utils/skel/macos-arm64_b/Gupaxx.app/Contents/Info.plist
Normal file → Executable file
0
utils/skel/macos-arm64/Gupaxx.app/Contents/MacOS/xmrig/xmrig → utils/skel/macos-arm64_b/Gupaxx.app/Contents/Info.plist
Normal file → Executable file
0
utils/skel/windows/XMRig/xmrig.exe → utils/skel/macos-arm64_b/Gupaxx.app/Contents/Resources/Gupaxx.icns
Normal file → Executable file
0
utils/skel/windows/XMRig/xmrig.exe → utils/skel/macos-arm64_b/Gupaxx.app/Contents/Resources/Gupaxx.icns
Normal file → Executable file
0
utils/skel/macos-x64_b/Gupaxx.app/Contents/Info.plist
Executable file
0
utils/skel/macos-x64_b/Gupaxx.app/Contents/Info.plist
Executable file
0
utils/skel/macos-x64_b/Gupaxx.app/Contents/MacOS/gupaxx
Normal file
0
utils/skel/macos-x64_b/Gupaxx.app/Contents/MacOS/gupaxx
Normal file
0
utils/skel/macos-x64_b/Gupaxx.app/Contents/Resources/Gupaxx.icns
Executable file
0
utils/skel/macos-x64_b/Gupaxx.app/Contents/Resources/Gupaxx.icns
Executable file
0
utils/skel/windows_b/Gupaxx.exe
Normal file
0
utils/skel/windows_b/Gupaxx.exe
Normal file
0
utils/skel/windows_b/P2Pool/p2pool.exe
Normal file
0
utils/skel/windows_b/P2Pool/p2pool.exe
Normal file
0
utils/skel/windows_b/XMRig/xmrig.exe
Normal file
0
utils/skel/windows_b/XMRig/xmrig.exe
Normal file
Loading…
Reference in a new issue