aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sitecopy.rb
blob: c7b05cbe907ff3b5e3c76448c890d003b02f9cec (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/'
  sha1 '2de3679d98c31331f48ff10e824c615a180f2d3b'

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