43aee81099
Closes #42265. 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.3.tar.gz"
|
|
sha256 "862f8a98f27a1e40b97a1d9853ca63cf4d8b8b924963226e3fa459bffd053ccf"
|
|
|
|
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
|