homebrew-core/Formula/cadaver.rb
Jack Nagel 8c29982153 Revert "Rename readline to gnu-readline"
This reverts commit adee5315265cc46aa6a3057071527abb16e1cd94.

Turns out one of the "other things" is a dealbreaker.

We only create kegs using a formula's canonical name. However, we do not
check that this is the case when mapping existing kegs back to formula
objects, and thus a keg with a name that happens to be an alias can fool
Homebrew into thinking the canonically-named keg exists.

So anything that enumerates kegs and then tries to do stuff with the
resulting formula objects will just break. This is obviously worse than
the debugger being broken, so reverting this for the time being.
2012-11-10 21:12:26 -06:00

24 lines
598 B
Ruby

require 'formula'
class Cadaver < Formula
homepage 'http://www.webdav.org/cadaver/'
url 'http://www.webdav.org/cadaver/cadaver-0.23.3.tar.gz'
sha1 '4ad8ea2341b77e7dee26b46e4a8a496f1a2962cd'
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'readline'
depends_on 'neon'
def install
neon_prefix = Formula.factory('neon').opt_prefix
system "./configure", "--prefix=#{prefix}",
"--with-neon=#{neon_prefix}",
"--with-ssl"
cd 'lib/intl' do
system "make"
end
system "make install"
end
end