aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2012-03-15 21:29:40 -0500
committerJack Nagel2012-03-15 21:31:52 -0500
commitc5998e468e1fc03b98b177789a416618429d8b22 (patch)
tree71b592a0bdf9cc339942b03f37e955eb8417e179 /Library/Formula
parentcf570caf9d83f74291b7bb37268345a6ec4026bb (diff)
downloadhomebrew-c5998e468e1fc03b98b177789a416618429d8b22.tar.bz2
ftimes: remove openssl dep
The dep on openssl is unconditional and undocumented; the ftimes docs seem to indicate that 0.9.7f is sufficient which would make it unnecessary even on Leopard. Also fix a couple of style nits. Closes #10953. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ftimes.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/ftimes.rb b/Library/Formula/ftimes.rb
index 208afd0af..6422e5cd8 100644
--- a/Library/Formula/ftimes.rb
+++ b/Library/Formula/ftimes.rb
@@ -1,15 +1,15 @@
require 'formula'
class Ftimes < Formula
- url 'http://downloads.sourceforge.net/project/ftimes/ftimes/3.8.0/ftimes-3.8.0.tgz'
homepage 'http://ftimes.sourceforge.net/FTimes/index.shtml'
+ url 'http://downloads.sourceforge.net/project/ftimes/ftimes/3.8.0/ftimes-3.8.0.tgz'
md5 'b4bc8a3c00b3aed9e9cc9583234ec6a7'
depends_on 'pcre'
- depends_on 'openssl'
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
"--prefix=#{prefix}"
inreplace 'doc/ftimes/Makefile' do |s|