aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2010-07-07 20:25:33 -0700
committerAdam Vandenberg2010-07-07 20:25:33 -0700
commita74a9ce70d1c8fa8f4246a0d966124e2aa6e1f93 (patch)
treec5f24613b105fce38ddabe6fe432aee17c394d69 /Library/Formula
parent673d6634d4f9c48651a33e869496d5a8d73fb8aa (diff)
downloadhomebrew-a74a9ce70d1c8fa8f4246a0d966124e2aa6e1f93.tar.bz2
Redact FileZilla formula.
FileZilla requires wxWidgets 2.8.x, which doesn't compile 64-bit on Snow Leopard. The upcoming wxWidgets 3.0 will compile 64-bit at some point, but software will need to be ported forward to use it. Since compiling FileZilla from source is of dubious benefit over downloading the .app, removing the formula for now. Fixes #926
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/filezilla.rb40
1 files changed, 0 insertions, 40 deletions
diff --git a/Library/Formula/filezilla.rb b/Library/Formula/filezilla.rb
deleted file mode 100644
index 2c25b52ca..000000000
--- a/Library/Formula/filezilla.rb
+++ /dev/null
@@ -1,40 +0,0 @@
-require 'formula'
-
-# FileZilla FTP client.
-# See: http://wiki.filezilla-project.org/Compiling_FileZilla_3_under_Mac_OS_X
-
-class Filezilla <Formula
- url 'http://d10xg45o6p6dbl.cloudfront.net/projects/f/filezilla/FileZilla_3.3.0.1_src.tar.bz2'
- homepage 'http://filezilla-project.org/'
- md5 'f273aef3b8408d0a1c7f0fee39733e9b'
-
- depends_on 'pkg-config'
- depends_on 'libidn'
- depends_on 'gnutls'
- depends_on 'gettext'
-
- # depends on wxWidgets >= 2.8.9; 10.5 has 2.8.4, 10.6 has 2.8.8
- depends_on 'wxmac'
-
- def install
- # --disable-locales because msgfmt complains about "filezilla.pot" not
- # being there (even though it certainly looks like it's there to me.)
-
- system "./configure", "--prefix=#{prefix}", "--disable-debug",
- "--disable-dependency-tracking",
- "--disable-locales"
-
- system "make"
-
- # Install the .app
- Dir.chdir "FileZilla.app/Contents/MacOS" do
- system "strip filezilla fzputtygen fzsftp"
- end
-
- prefix.install "FileZilla.app"
- end
-
- def caveats
- "FileZilla.app installed to #{prefix}."
- end
-end