mpck 0.19

Closes Homebrew/homebrew#13018.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Steven Scott 2012-06-25 16:01:46 -04:00 committed by Adam Vandenberg
parent ea7ca98555
commit 8364113487
1 changed files with 13 additions and 0 deletions

13
Formula/mpck.rb Normal file
View File

@ -0,0 +1,13 @@
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