aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBrett Porter2009-09-01 10:32:52 +1000
committerMax Howell2009-09-01 11:39:21 +0100
commit4fbf210d06539b5103ee929165db4a531ef42b1a (patch)
treeaa491bed606bc401607b4fe277ef7cdf039b2a9a /Library
parent83ac50cc580a37f619b43dc6d877bb428f2bc0b3 (diff)
downloadhomebrew-4fbf210d06539b5103ee929165db4a531ef42b1a.tar.bz2
Litmus formula
Litmus is a WebDAV server test suite, which aims to test whether a server is compliant with the WebDAV protocol as specified in RFC2518.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/litmus.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/litmus.rb b/Library/Formula/litmus.rb
new file mode 100644
index 000000000..e33530350
--- /dev/null
+++ b/Library/Formula/litmus.rb
@@ -0,0 +1,13 @@
+require 'brewkit'
+
+class Litmus <Formula
+ @url='http://www.webdav.org/neon/litmus/litmus-0.12.1.tar.gz'
+ @homepage='http://www.webdav.org/neon/litmus/'
+ @md5='d0bbb717196e835a5759f67f097321fb'
+
+ def install
+ # Just basic options for now. We could use --with-ssl or alternative neon using dependency tracking?
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end