homebrew-core/Formula/subversion.rb

24 lines
759 B
Ruby
Raw Normal View History

2009-08-01 04:53:17 +00:00
require 'brewkit'
class Subversion <Formula
@url='http://subversion.tigris.org/downloads/subversion-1.6.5.tar.bz2'
2009-08-01 04:53:17 +00:00
@homepage='http://subversion.tigris.org/'
@md5='1a53a0e72bee0bf814f4da83a9b6a636'
2009-08-01 04:53:17 +00:00
depends_on 'neon'
2009-08-01 04:53:17 +00:00
def install
# Use existing system zlib, dep-provided other libraries
2009-08-01 04:53:17 +00:00
# Don't mess with Apache modules (since we're not sudo)
system "./configure", "--disable-debug",
"--prefix=#{prefix}",
"--with-ssl",
"--with-zlib=/usr/lib",
"--disable-mod-activation",
"--without-apache-libexecdir",
"--without-berkeley-db"
2009-08-01 04:53:17 +00:00
system "make"
system "make install"
end
end