exomizer 2.0.9 (new formula)

Closes Homebrew/homebrew#49329.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
This commit is contained in:
Michał Kalbarczyk 2016-02-19 00:07:12 +01:00 committed by Xu Cheng
parent 81cd15643e
commit 22d60f1a9b

19
Formula/exomizer.rb Normal file
View file

@ -0,0 +1,19 @@
class Exomizer < Formula
desc "6502 compressor with CBM PET 4032 support."
homepage "http://hem.bredband.net/magli143/exo/"
url "http://hem.bredband.net/magli143/exo/exomizer209.zip"
version "2.0.9"
sha256 "d2a95d4d168e4007fc396295e2f30a21b58f4648c28d1aadf84e7d497c5c7a34"
def install
cd "src" do
system "make"
bin.install %w[b2membuf exobasic exomizer exoraw]
end
end
test do
output = shell_output(bin/"exomizer -v")
assert_match version.to_s, output
end
end