abd78cc83d
Closes #41379. Signed-off-by: FX Coudert <fxcoudert@gmail.com>
16 lines
455 B
Ruby
16 lines
455 B
Ruby
class Vfuse < Formula
|
|
desc "Convert bootable DMG images for use in VMware Fusion"
|
|
homepage "https://github.com/chilcote/vfuse"
|
|
url "https://github.com/chilcote/vfuse/archive/2.2.1.tar.gz"
|
|
sha256 "fbb54b277e259155f173b2c80c5bd47178cfd4f164957826c09fc50678342299"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install Dir["pkgroot/usr/local/vfuse/bin/*"]
|
|
end
|
|
|
|
test do
|
|
assert_match version.to_s, shell_output("#{bin}/vfuse --version")
|
|
end
|
|
end
|