aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2010-02-12 20:16:26 +0100
committerDavid Höppner2010-02-12 20:16:26 +0100
commitb5b8b8a3a3539d9a7194ce67491aae1257d72f97 (patch)
treef63cdfea0d24ec19f74302a1e50d0767682e8cbe /Library/Formula
parent5099f9cacef3482238375e22705ad93c03f9c310 (diff)
downloadhomebrew-b5b8b8a3a3539d9a7194ce67491aae1257d72f97.tar.bz2
New formula monotone
monotone is a free distributed version control system. It provides a simple, single-file transactional version store, with fully disconnected operation and an efficient peer-to-peer synchronization protocol. It understands history-sensitive merging, lightweight branches, integrated code review and 3rd party testing.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/monotone.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/Library/Formula/monotone.rb b/Library/Formula/monotone.rb
new file mode 100644
index 000000000..8e8bfda8d
--- /dev/null
+++ b/Library/Formula/monotone.rb
@@ -0,0 +1,23 @@
+require 'formula'
+
+class Monotone <Formula
+ url 'http://www.monotone.ca/downloads/0.46/monotone-0.46.tar.gz'
+ homepage 'http://www.monotone.ca/'
+ md5 '405286223efcf375cd022dabf2f1c845'
+
+ depends_on 'pkg-config'
+ depends_on 'gettext'
+ depends_on 'botan'
+ depends_on 'boost'
+ depends_on 'libidn'
+ depends_on 'lua'
+ depends_on 'pcre'
+
+ def install
+ # linker fails
+ ENV.gcc_4_2
+
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end