2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-01 00:32:52 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Litmus < Formula
|
2010-04-07 05:58:35 +00:00
|
|
|
homepage 'http://www.webdav.org/neon/litmus/'
|
2013-01-18 02:47:46 +00:00
|
|
|
url 'http://www.webdav.org/neon/litmus/litmus-0.13.tar.gz'
|
|
|
|
sha1 '42ad603035d15798facb3be79b1c51376820cb19'
|
2009-09-01 00:32:52 +00:00
|
|
|
|
|
|
|
def install
|
2014-05-27 04:33:36 +00:00
|
|
|
# Note that initially this formula also had the --disable-debug option
|
|
|
|
# passed to ./configure.
|
|
|
|
#
|
|
|
|
# This disabled a critical feature. Litmus is a debugging tool, and this
|
|
|
|
# caused all logs to be empty by default.
|
|
|
|
#
|
|
|
|
# See: https://github.com/Homebrew/homebrew/pull/29608
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2009-09-01 00:32:52 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|