-
Notifications
You must be signed in to change notification settings - Fork 28
/
box64.sh
executable file
·111 lines (96 loc) · 3.82 KB
/
box64.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#!/bin/bash
clear -x
echo "Box64 script started!"
if
command -v apt >/dev/null
then
case "$dpkg_architecture" in
"arm64")
add_external_repo "box64" "https://pi-apps-coders.github.io/box64-debs/KEY.gpg" "https://Pi-Apps-Coders.github.io/box64-debs/debian" "./" || exit 1
# remove deprecated keyring files
sudo rm -f /usr/share/keyrings/box64-debs-archive-keyring.gpg /etc/apt/trusted.gpg.d/box64-debs-archive-keyring.gpg
sudo apt update
# remove deprecated package name
if package_installed box64; then
sudo apt purge -y --allow-change-held-packages box64
fi
if [[ "$SOC_ID" == "tegra-x1" ]] || [[ "$SOC_ID" == "tegra-x2" ]]; then
sudo apt install -y box64-tegrax1 || exit 1
elif [[ "$SOC_ID" == "rk3399" ]]; then
sudo apt install -y box64-rk3399 || exit 1
elif [[ "$SOC_ID" == "bcm2711" ]]; then
sudo apt install -y box64-rpi4arm64 || exit 1
elif [[ "$SOC_ID" == "bcm2837" ]]; then
sudo apt install -y box64-rpi3arm64 || exit 1
elif cat /proc/cpuinfo | grep -q aes; then
warning "There is no box64 pre-build for your device $SOC_ID $model"
warning "Installing the generic arm box64 build as a fallback (crypto extensions enabled)"
sudo apt install -y box64-generic-arm || exit 1
else
warning "There is no box64 pre-build for your device $SOC_ID $model"
warning "Installing the RPI4 tuned box64 build as a fallback (no crypto extensions enabled)"
sudo apt install -y box64-rpi4arm64 || exit 1
fi
;;
"amd64")
# add toolchain ppa for gcc 11 on bionic and focal
# newer releases of ubuntu have gcc-11 in the normal repos
# older releases of ubuntu are not supported
case "$__os_codename" in
bionic) ubuntu_ppa_installer "theofficialgman/cmake-bionic" || error "PPA failed to install" ;;
esac
case "$__os_codename" in
bionic | focal) ubuntu_ppa_installer "ubuntu-toolchain-r/test" || error "PPA failed to install" ;;
esac
sudo apt install zenity cmake git build-essential gcc-11 g++-11 -y || error "Could not install dependencies"
cd /tmp
rm -rf box64
git clone --depth=1 https://github.com/ptitSeb/box64
cd box64
mkdir build
cd build
cmake .. -DLD80BITS=1 -DNOALIGN=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_C_COMPILER=gcc-11
echo "Building Box64"
make -j$(nproc) || error "Compilation failed"
sudo make install || error "Make install failed"
sudo systemctl restart systemd-binfmt
;;
*)
error_user "Error: your cpu architecture ($dpkg_architecture) is not supported by box64 and will fail to compile"
;;
esac
sudo mkdir /usr/share/box64
sudo wget https://github.com/ptitSeb/box64/raw/main/docs/img/Box64Icon.png -O /usr/share/box64/icon.png
echo "Adding box64 to applications list"
sudo tee /usr/share/applications/box64.desktop <<'EOF'
[Desktop Entry]
Type=Application
Exec=bash -c '/usr/local/bin/box64 "$(zenity --file-selection)"'
Name=Box64
Icon=/usr/share/box64/icon.png
Terminal=hidden
Categories=Game;System
EOF
echo "Adding box64 application helper to list"
sudo tee /usr/share/applications/box64_helper.desktop <<'EOF'
[Desktop Entry]
Type=Application
Exec=bash -c 'bash <( wget -O - https://raw.githubusercontent.com/cobalt2727/L4T-Megascript/master/assets/Box64/box64_program_helper.sh )'
Name=Box64 Application Helper
Icon=/usr/share/box64/icon.png
Terminal=hidden
Categories=System
EOF
rm -rf /tmp/box64
echo "Box64 successfully installed"
echo ""
echo "Start box64 from the applications list and select the x86_64 program or"
echo "start programs by typing 'box64 /path/to/my/application' in terminal"
sleep 3
elif
command -v dnf >/dev/null
then
sudo dnf install -y box64 || error "Couldn't install box64!"
else
error_user "No available package manager found. Are you using a Ubuntu/Debian or Fedora based system?"
fi