Run virtual machines on iOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
3.2 KiB

  1. #!/bin/sh
  2. # pkg-config
  3. PKG_CONFIG_SRC="https://pkgconfig.freedesktop.org/releases/pkg-config-0.29.2.tar.gz"
  4. # Source files for qemu
  5. FFI_SRC="https://sourceware.org/ftp/libffi/libffi-3.3.tar.gz"
  6. ICONV_SRC="https://ftp.gnu.org/gnu/libiconv/libiconv-1.16.tar.gz"
  7. GETTEXT_SRC="https://ftp.gnu.org/gnu/gettext/gettext-0.22.5.tar.gz"
  8. PNG_SRC="https://ftp.osuosl.org/pub/blfs/conglomeration/libpng/libpng-1.6.37.tar.xz"
  9. JPEG_TURBO_SRC="https://ftp.osuosl.org/pub/blfs/conglomeration/libjpeg-turbo/libjpeg-turbo-1.5.3.tar.gz"
  10. GLIB_SRC="https://download.gnome.org/sources/glib/2.69/glib-2.69.0.tar.xz"
  11. GPG_ERROR_SRC="https://www.gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-1.38.tar.gz"
  12. GCRYPT_SRC="https://www.gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.8.4.tar.gz"
  13. PIXMAN_SRC="https://www.cairographics.org/releases/pixman-0.38.0.tar.gz"
  14. OPENSSL_SRC="https://www.openssl.org/source/old/1.1.1/openssl-1.1.1b.tar.gz"
  15. TPMS_SRC="https://github.com/osy/libtpms/releases/download/v0.9.6/libtpms-0.9.6.tar.gz"
  16. SWTPM_SRC="https://github.com/utmapp/swtpm/releases/download/v0.8.99/swtpm-0.8.99.tar.gz"
  17. OPUS_SRC="https://archive.mozilla.org/pub/opus/opus-1.3.tar.gz"
  18. ZSTD_SRC="https://github.com/facebook/zstd/releases/download/v1.5.2/zstd-1.5.2.tar.gz"
  19. SPICE_PROTOCOL_SRC="https://www.spice-space.org/download/releases/spice-protocol-0.14.4.tar.xz"
  20. SPICE_SERVER_SRC="https://www.spice-space.org/download/releases/spice-server/spice-0.14.3.tar.bz2"
  21. USB_SRC="https://github.com/libusb/libusb/releases/download/v1.0.25/libusb-1.0.25.tar.bz2"
  22. USBREDIR_SRC="https://www.spice-space.org/download/usbredir/usbredir-0.13.0.tar.xz"
  23. SLIRP_SRC="https://gitlab.freedesktop.org/slirp/libslirp/-/archive/v4.7.0/libslirp-v4.7.0.tar.gz"
  24. QEMU_SRC="https://github.com/utmapp/qemu/releases/download/v9.1.0-utm/qemu-9.1.0-utm.tar.xz"
  25. # Source files for spice-client
  26. JSON_GLIB_SRC="https://download.gnome.org/sources/json-glib/1.6/json-glib-1.6.6.tar.xz"
  27. GST_SRC="https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.19.1.tar.xz"
  28. GST_BASE_SRC="https://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.19.1.tar.xz"
  29. GST_GOOD_SRC="https://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.19.1.tar.xz"
  30. XML2_SRC="http://xmlsoft.org/sources/libxml2-2.9.12.tar.gz"
  31. SOUP_SRC="https://download.gnome.org/sources/libsoup/2.74/libsoup-2.74.2.tar.xz"
  32. PHODAV_SRC="https://download.gnome.org/sources/phodav/2.5/phodav-2.5.tar.xz"
  33. SPICE_CLIENT_SRC="https://www.spice-space.org/download/gtk/spice-gtk-0.40.tar.xz"
  34. LIBUCONTEXT_REPO="https://github.com/utmapp/libucontext.git"
  35. LIBUCONTEXT_COMMIT="9b1d8f01a6e99166f9808c79966abe10786de8b6"
  36. # Source files for GPU acceleration
  37. WEBKIT_REPO="https://github.com/utmapp/WebKit.git"
  38. WEBKIT_COMMIT="b5f22a32a49682059749b2cccac06231a20c1387"
  39. WEBKIT_SUBDIRS="Source/ThirdParty/ANGLE Configurations Tools/ccache"
  40. EPOXY_REPO="https://github.com/utmapp/libepoxy.git"
  41. EPOXY_COMMIT="266d2290a437c655f7419e85af06bfbb73a720c4"
  42. VIRGLRENDERER_REPO="https://github.com/utmapp/virglrenderer.git"
  43. VIRGLRENDERER_COMMIT="dc039d9ecd74fc671a85bfbe7c4e4bc552b7b855"
  44. # Decompiled Hypervisor for iOS
  45. HYPERVISOR_REPO="https://github.com/utmapp/Hypervisor.git"
  46. HYPERVISOR_COMMIT="eaf6d74362a61b721f85a431131259c817f57505"