aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mpck.rb14
1 files changed, 8 insertions, 6 deletions
diff --git a/Library/Formula/mpck.rb b/Library/Formula/mpck.rb
index c41542ad1..9c19b8be5 100644
--- a/Library/Formula/mpck.rb
+++ b/Library/Formula/mpck.rb
@@ -1,13 +1,15 @@
-require 'formula'
-
class Mpck < Formula
- homepage 'http://checkmate.gissen.nl/'
- url 'http://checkmate.gissen.nl/checkmate-0.19.tar.gz'
- sha1 '4d96d65c9ad8c738cb87d197a45938ca955337d6'
+ homepage "http://checkmate.gissen.nl/"
+ url "http://checkmate.gissen.nl/checkmate-0.19.tar.gz"
+ sha256 "940f95d445bab629051930ef61c5614bdfbe9df6f450f1ffab86eaf885e79195"
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
- system "make install"
+ system "make", "install"
+ end
+
+ test do
+ system "#{bin}/mpck", test_fixtures("test.mp3")
end
end