aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lftp.rb
diff options
context:
space:
mode:
authorDavid Reynolds2009-10-20 22:01:32 +0100
committerMax Howell2009-10-21 02:27:24 +0100
commita48e4b1324753d21f39601850868af64c234a45a (patch)
tree21ca847d76c90da512a78a2cdefefc74da050378 /Library/Formula/lftp.rb
parentb3cf6c815caf1c08fde019087e6961afab4d9fca (diff)
downloadhomebrew-a48e4b1324753d21f39601850868af64c234a45a.tar.bz2
Remove some unecessary compiler flags
Diffstat (limited to 'Library/Formula/lftp.rb')
-rw-r--r--Library/Formula/lftp.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/Library/Formula/lftp.rb b/Library/Formula/lftp.rb
index ebafb4f61..f03af8275 100644
--- a/Library/Formula/lftp.rb
+++ b/Library/Formula/lftp.rb
@@ -1,16 +1,14 @@
require 'formula'
class Lftp <Formula
- @url='http://ftp.yars.free.net/pub/source/lftp/lftp-3.7.15.tar.gz'
- @homepage='http://lftp.yar.ru/'
- @md5='6c43ffdb59234ff0533cfdda0c3c305c'
+ url 'http://ftp.yars.free.net/pub/source/lftp/lftp-3.7.15.tar.gz'
+ homepage 'http://lftp.yar.ru/'
+ md5 '6c43ffdb59234ff0533cfdda0c3c305c'
depends_on 'readline'
def install
- ENV['CXXFLAGS'] += " -fno-exceptions -fno-rtti -fno-implement-inlines"
- ENV['LDFLAGS'] += " -Xlinker -search_paths_first -L/usr/local/lib"
- system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking", "--with-openssl", "--disable-shared", "--disable-nls"
+ system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end