Add Box64 app for 64-bit OSes only
parent
39414ba450
commit
83fff45fdd
@ -0,0 +1,2 @@
|
||||
ptitseb for creating box64
|
||||
Tejas Singh YT for the scripts(Checkout my YT channel :)
|
@ -0,0 +1,5 @@
|
||||
Easily emulate x86_64 linux apps on Raspberry Pi.
|
||||
|
||||
Box64 lets you run x86_64 Linux programs (such as games) on non-x86_64 Linux systems, like ARM (host system needs to be 64bit little-endian).
|
||||
|
||||
Because Box64 uses the native versions of some "system" libraries, like libc, libm, SDL, and OpenGL, it's easy to integrate and use with most applications, and performance can be surprisingly high in many cases.
|
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.5 KiB |
@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
"${DIRECTORY}/pkg-install" "cmake" "$(dirname "$0")" || exit 1
|
||||
|
||||
rm -rf ~/box64
|
||||
git clone https://github.com/ptitSeb/box64 || error 'Failed to clone box64 repository!'
|
||||
cd box64 || error 'Failed to change directory'
|
||||
mkdir build; cd build; cmake .. -DRPI4ARM64=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo || error 'Failed to make directory'
|
||||
make -j8 || error 'Failed to compile'
|
||||
sudo make install || error 'Failed to run "sudo make install"'
|
||||
sudo systemctl restart systemd-binfmt || exit 1
|
@ -0,0 +1,19 @@
|
||||
#!/bin/bash
|
||||
|
||||
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
||||
|
||||
function error {
|
||||
echo -e "\\e[91m$1\\e[39m"
|
||||
exit 1
|
||||
}
|
||||
|
||||
if [ ! -e ~/box64 ];then
|
||||
echo "The $HOME/box64 folder does not exist. Nothing to do!"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
cd ~/box64/build || error "Failed to enter ~/box64/build!"
|
||||
sudo make uninstall || error "Failed to uninstall box64!"
|
||||
|
||||
rm -rf ~/box64 || error "Failed to delete the $HOME/box64 directory!"
|
||||
|
@ -0,0 +1 @@
|
||||
https://github.com/ptitSeb/box64
|
Loading…
Reference in New Issue