homebrew-core/Formula/vfuse.rb
Igor Kapkov b3c3e16808 vfuse 2.2.0
Closes #41105.

Signed-off-by: FX Coudert <fxcoudert@gmail.com>
2019-06-19 08:22:28 +02:00

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.0.tar.gz"
sha256 "e9f15e6d5109b1f56cf1d8c41d488fd14e286a0bde50395e5a5a5bbd217802a6"
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