Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit 9eda4c2

Browse files
committed
guestfs-tools: version 1.53.2
Signed-off-by: Antonio Caggiano <quic_acaggian@quicinc.com>
1 parent 751f05e commit 9eda4c2

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

Formula/guestfs-tools.rb

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Copyright (c) 2024, Qualcomm Innovation Center, Inc. All rights reserved.
2+
# SPDX-License-Identifier: BSD-2-Clause
3+
4+
class GuestfsTools < Formula
5+
desc "Set of tools for accessing and modifying virtual machine (VM) disk images"
6+
homepage "https://libguestfs.org/"
7+
url "https://github.com/libguestfs/guestfs-tools.git", revision: "daf2b71e0ef18a04928f82688278673ad57d4c4b"
8+
version "1.53.2"
9+
license "GPL-2.0-or-later"
10+
11+
depends_on "automake" => :build
12+
depends_on "autoconf" => :build
13+
depends_on "libtool" => :build
14+
depends_on "pkg-config" => :build
15+
depends_on "coreutils" => :build
16+
depends_on "gnu-getopt" => :build
17+
depends_on "bison" => :build
18+
depends_on "gpg2"
19+
depends_on "libosinfo"
20+
depends_on "quic/quic/libguestfs"
21+
22+
def install
23+
system "autoreconf", "-i"
24+
system "./configure", *std_configure_args
25+
system "make", "install"
26+
end
27+
28+
def caveats
29+
<<~EOS
30+
To use virt-builder you need to add the following to your profile:
31+
export VIRT_BUILDER_DIRS="#{HOMEBREW_PREFIX}/etc"
32+
EOS
33+
end
34+
end

0 commit comments

Comments
 (0)