aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authordbr2009-09-17 19:41:05 +0100
committerdbr2009-09-17 19:51:48 +0100
commit1b6c9d8a9850e424d91bc8518ec58f5f1c7880a7 (patch)
tree53a3728d00bbe70cf81ab88eb0ce2eb1bd290f0a /Library/Formula
parent0904f4d54e25eb9901b97ccacc0f74e75a05f07e (diff)
downloadhomebrew-1b6c9d8a9850e424d91bc8518ec58f5f1c7880a7.tar.bz2
Add weechat formula
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/weechat.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/weechat.rb b/Library/Formula/weechat.rb
new file mode 100644
index 000000000..86d81cb42
--- /dev/null
+++ b/Library/Formula/weechat.rb
@@ -0,0 +1,16 @@
+require 'brewkit'
+
+class Weechat <Formula
+ @url='http://www.weechat.org/files/src/weechat-0.3.0.tar.bz2'
+ @homepage='http://www.weechat.org'
+ @md5='c31cfc229e964ff9257cc9c7f9e6c9bc'
+
+ def deps
+ BinaryDep.new 'cmake'
+ end
+
+ def install
+ system "cmake", "-DDISABLE_PERL=ON", std_cmake_parameters, "."
+ system "make install"
+ end
+end