diff --git a/apps/QEMU/credits b/apps/QEMU/credits new file mode 100644 index 0000000..ac3c3ec --- /dev/null +++ b/apps/QEMU/credits @@ -0,0 +1,4 @@ +Added to Pi-Apps by Itai-Nelken +compiled by Itai-Nelken +armhf DEB packaged using QEMU2DEB (tool by Itai-Nelken) by Itai-Nelken. +arm64 DEB packaged with checkinstall by Itai-Nelken. diff --git a/apps/QEMU/description b/apps/QEMU/description new file mode 100644 index 0000000..e383caf --- /dev/null +++ b/apps/QEMU/description @@ -0,0 +1,4 @@ +QEMU is a generic and open source machine emulator and virtualizer. +Latest version of QEMU, Not outdated like the repository's QEMU. +if you ever had trouble using the repository's QEMU, this version will work way better. +(for example the MacOS 9 dock doesn't appear using the repository's QEMU). diff --git a/apps/QEMU/icon-24.png b/apps/QEMU/icon-24.png new file mode 100644 index 0000000..fb0c508 Binary files /dev/null and b/apps/QEMU/icon-24.png differ diff --git a/apps/QEMU/icon-64.png b/apps/QEMU/icon-64.png new file mode 100644 index 0000000..d3678b6 Binary files /dev/null and b/apps/QEMU/icon-64.png differ diff --git a/apps/QEMU/install-32 b/apps/QEMU/install-32 new file mode 100755 index 0000000..1fc9c42 --- /dev/null +++ b/apps/QEMU/install-32 @@ -0,0 +1,16 @@ +#!/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 +} + +cd $HOME +#Download QEMU +rm -f ./qemu-5.2.50-armhf.deb +wget https://archive.org/download/macos_921_qemu_rpi/qemu-5.2.50-armhf.deb || error 'Failed to Download QEMU!' +#Install QEMU +sudo apt install --fix-broken -y ./qemu-5.2.50-armhf.deb || error 'Failed to install QEMU!' +rm qemu-5.2.50-armhf.deb diff --git a/apps/QEMU/install-64 b/apps/QEMU/install-64 new file mode 100755 index 0000000..7ea6adb --- /dev/null +++ b/apps/QEMU/install-64 @@ -0,0 +1,15 @@ +#!/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 +} + +cd $HOME +#Download QEMU +wget https://archive.org/download/macos_921_qemu_rpi/qemu_5.2.50-1_arm64.deb || error 'Failed to Download QEMU!' +#Install QEMU +sudo apt install --fix-broken -y ./qemu_5.2.50-1_arm64.deb || error 'Failed to unstall QEMU!' +rm qemu_5.2.50-1_arm64.deb diff --git a/apps/QEMU/uninstall b/apps/QEMU/uninstall new file mode 100755 index 0000000..89ec835 --- /dev/null +++ b/apps/QEMU/uninstall @@ -0,0 +1,11 @@ +#!/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 +} + +sudo apt purge -y qemu +sudo apt autoremove -y diff --git a/apps/QEMU/website b/apps/QEMU/website new file mode 100644 index 0000000..345a7f3 --- /dev/null +++ b/apps/QEMU/website @@ -0,0 +1 @@ +https://www.qemu.org/