New formula: whatmask 1.2

Closes Homebrew/homebrew#6935.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Chris Rose 2011-08-10 16:20:14 -07:00 committed by Jack Nagel
parent d0019e9f1f
commit 232cb3779a

14
Formula/whatmask.rb Normal file
View file

@ -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