homebrew-core/Formula/mpck.rb
Steven Scott 8364113487 mpck 0.19
Closes Homebrew/homebrew#13018.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-09-01 10:01:15 -07:00

13 lines
345 B
Ruby

require 'formula'
class Mpck < Formula
homepage 'http://checkmate.gissen.nl/'
url 'http://checkmate.gissen.nl/checkmate-0.19.tar.gz'
sha1 '4d96d65c9ad8c738cb87d197a45938ca955337d6'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end