Compare commits

...

6 Commits

Author SHA1 Message Date
Dott. Leonardo Migliorelli 89b23118a8
Merge 21ef129508 into 4a11725b1e 2025-08-28 12:46:29 +01:00
Phil Clifford 4a11725b1e fix: change iso fs for unattended iso
fixes #1621
2025-08-28 12:01:57 +01:00
Dott. Leonardo Migliorelli 21ef129508 removed patch as #1700 fixed it 2025-07-31 11:57:09 +02:00
Glydric 605e68c947 updated to point the original quickemu project 2025-07-09 12:23:50 +02:00
Glydric 91373cd2de added patch for coreutils 2025-07-09 12:18:01 +02:00
Glydric 64c47e905a added homebrew formulae 2025-07-09 11:57:51 +02:00
3 changed files with 75 additions and 1 deletions

37
Formula/quickemu.rb Normal file
View File

@ -0,0 +1,37 @@
class Quickemu < Formula
desc "Quickly create and run optimised Windows, macOS and Linux virtual machines"
homepage "https://github.com/quickemu-project/quickemu"
url "https://github.com/quickemu-project/quickemu/archive/refs/tags/4.9.7.tar.gz"
sha256 "38a93301a2b233bc458c62d1228d310a9c29c63c10d008c2905029ca66188606"
license "MIT"
depends_on "bash"
depends_on "cdrtools"
depends_on "coreutils"
depends_on "jq"
depends_on "python3"
depends_on "qemu"
depends_on "samba"
depends_on "socat"
depends_on "swtpm"
depends_on "usbutils"
depends_on "zsync"
def install
bin.install "quickemu"
bin.install "quickget"
end
test do
# `test do` will create, run in and delete a temporary directory.
#
# This test will fail and we won't accept that! For Homebrew/homebrew-core
# this will need to be a test that verifies the functionality of the
# software. Run the test with `brew test quickemu`. Options passed
# to `brew install` such as `--HEAD` also need to be provided to `brew test`.
#
# The installed folder is not in the path, so use the entire path to any
# executables being tested: `system bin/"program", "do", "something"`.
system "false"
end
end

37
Formula/quickemu_dev.rb Normal file
View File

@ -0,0 +1,37 @@
class QuickemuDev < Formula
desc "Quickly create and run optimised Windows, macOS and Linux virtual machines"
homepage "https://github.com/quickemu-project/quickemu"
url "https://github.com/quickemu-project/quickemu/archive/refs/heads/master.tar.gz"
version "dev"
license "MIT"
depends_on "bash"
depends_on "cdrtools"
depends_on "coreutils"
depends_on "jq"
depends_on "python3"
depends_on "qemu"
depends_on "samba"
depends_on "socat"
depends_on "swtpm"
depends_on "usbutils"
depends_on "zsync"
def install
bin.install "quickemu"
bin.install "quickget"
end
test do
# `test do` will create, run in and delete a temporary directory.
#
# This test will fail and we won't accept that! For Homebrew/homebrew-core
# this will need to be a test that verifies the functionality of the
# software. Run the test with `brew test quickemu`. Options passed
# to `brew install` such as `--HEAD` also need to be provided to `brew test`.
#
# The installed folder is not in the path, so use the entire path to any
# executables being tested: `system bin/"program", "do", "something"`.
system "false"
end
end

View File

@ -3043,7 +3043,7 @@ web_get https://www.spice-space.org/download/windows/vdagent/vdagent-win-0.10.0/
web_get https://www.spice-space.org/download/windows/usbdk/UsbDk_1.0.22_x64.msi "${VM_PATH}/unattended"
echo "Making unattended.iso"
mkisofs -quiet -l -o "${VM_PATH}/unattended.iso" "${VM_PATH}/unattended/"
mkisofs -quiet -J -o "${VM_PATH}/unattended.iso" "${VM_PATH}/unattended/"
}
function handle_curl_error() {