homebrew-core/Formula/vfuse.rb

17 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.0.9.tar.gz"
sha256 "527a6f620387e8ad278fb3c1fa329155f6b23215cf8902c4ba51ce4d48560aaa"
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