2010-01-29 03:12:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Sitecopy < Formula
|
2010-01-29 03:12:49 +00:00
|
|
|
url 'http://www.manyfish.co.uk/sitecopy/sitecopy-0.16.6.tar.gz'
|
|
|
|
homepage 'http://www.manyfish.co.uk/sitecopy/'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '2de3679d98c31331f48ff10e824c615a180f2d3b'
|
2010-01-29 03:12:49 +00:00
|
|
|
|
|
|
|
def install
|
2010-05-24 17:55:06 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--with-libxml2",
|
|
|
|
"--with-ssl"
|
2010-01-29 03:12:49 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|