From 232cb3779aa03e4909028075fe791ea6771f2c0d Mon Sep 17 00:00:00 2001 From: Chris Rose Date: Wed, 10 Aug 2011 16:20:14 -0700 Subject: [PATCH] New formula: whatmask 1.2 Closes Homebrew/homebrew#6935. Signed-off-by: Jack Nagel --- Formula/whatmask.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Formula/whatmask.rb diff --git a/Formula/whatmask.rb b/Formula/whatmask.rb new file mode 100644 index 0000000000..247a4714d6 --- /dev/null +++ b/Formula/whatmask.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Whatmask < Formula + url 'http://downloads.laffeycomputer.com/current_builds/whatmask/whatmask-1.2.tar.gz' + homepage 'http://www.laffeycomputer.com/whatmask.html' + md5 '26aeff74dbba70262ccd426e681dcf4a' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--mandir=#{man}", + "--prefix=#{prefix}" + system "make install" + end +end