brew.txt 378 B

1234567891011121314
  1. class Mad < Formula
  2. desc "Erlang Containers"
  3. homepage "http://synrc.com/apps/mad/"
  4. url "https://github.com/synrc/mad/archive/1.9.tar.gz"
  5. version "1.9"
  6. sha256 "a1a19214497d416fc1c55cb89937cf881ced41e4ed8ca95cd35e6e7018091869"
  7. bottle :unneeded
  8. def install
  9. bin.install "mad"
  10. end
  11. test do
  12. assert_equal 'MAD Container Tool', pipe_output(bin/"mad")
  13. end
  14. end