homebrew-core/Formula/monotone.rb
David Höppner 08006a8760 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.
2010-02-12 20:16:26 +01:00

23 lines
527 B
Ruby

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