aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sitecopy.rb
blob: 8987d90884b17a72f1786fd687ca58f92a064af8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Sitecopy <Formula
  url 'http://www.manyfish.co.uk/sitecopy/sitecopy-0.16.6.tar.gz'
  homepage 'http://www.manyfish.co.uk/sitecopy/'
  md5 'b3aeb5a5f00af3db90b408e8c32a6c01'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--with-libxml2",
                          "--with-ssl"
    system "make install"
  end
end