homebrew-core/Formula/exomizer.rb
2018-04-06 16:41:31 +10:00

25 lines
834 B
Ruby

class Exomizer < Formula
desc "6502 compressor with CBM PET 4032 support"
homepage "https://bitbucket.org/magli143/exomizer/wiki/Home"
url "https://bitbucket.org/magli143/exomizer/wiki/downloads/exomizer-2.0.11.zip"
sha256 "8b31d6190308201b18af37509f3b1a0ec95bfc474bfad9743de64f8356d6b692"
bottle do
cellar :any_skip_relocation
sha256 "33cc7dc3c832788cc4d61a9853f55e320468928310acf54994680427408b6ee3" => :high_sierra
sha256 "45731b31fed3a6ffa3d0bc0dac41e9eda993a1d1bdf9d0409bf41523b8f426c1" => :sierra
sha256 "87dc2aec228936922e108a428f3e788906cd2cfdaf99910a6366de13514c63a4" => :el_capitan
end
def install
cd "src" do
system "make"
bin.install %w[exobasic exomizer]
end
end
test do
output = shell_output(bin/"exomizer -v")
assert_match version.to_s, output
end
end