aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDominyk Tiller2015-01-30 17:45:21 +0000
committerJack Nagel2015-01-31 18:27:57 -0500
commita9456e330a8ea704bdd2a435845d5aeeb831306e (patch)
tree04baf85ce267785aca9f6218b6af88dc11569d60 /Library/Formula
parent7c6782f9f1d038ce18595138eb5ef884b2c3c5fc (diff)
downloadhomebrew-a9456e330a8ea704bdd2a435845d5aeeb831306e.tar.bz2
sitecopy: boneyarding
Sitecopy currently compiles against the insecure system OpenSSL, and won’t compile against our OpenSSL because it wants SSLv2 at runtime (Ouch) and it won’t compile against GnuTLS because GnuTLS have considerably changed the structure of their build since the last update of sitecopy (2008). Closes #36389. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/sitecopy.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/Library/Formula/sitecopy.rb b/Library/Formula/sitecopy.rb
deleted file mode 100644
index c8ca52d1a..000000000
--- a/Library/Formula/sitecopy.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-require 'formula'
-
-class Sitecopy < Formula
- homepage 'http://www.manyfish.co.uk/sitecopy/'
- url 'http://www.manyfish.co.uk/sitecopy/sitecopy-0.16.6.tar.gz'
- sha1 '2de3679d98c31331f48ff10e824c615a180f2d3b'
-
- def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}",
- "--with-libxml2",
- "--with-ssl"
- system "make install"
- end
-end