homebrew-core/Formula/vfuse.rb
2019-10-11 13:06: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.4.tar.gz"
sha256 "a75745fc6f15b4d69b36c8954a4fe0d85e702996ceda4256d9eb13f8a689312e"
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