blob: 84018f572271d33a9d9d63a2c0122904e18194e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  | 
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'
  def install
    system "./configure", "--prefix=#{prefix}",
                          "--with-included-neon",
                          "--with-ssl"
    cd 'lib/intl' do
      system "make"
    end
    system "make install"
  end
end
  |