aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2013-06-03 20:41:42 -0500
committerJack Nagel2013-06-03 20:42:06 -0500
commit3905b75cfe80df2a19d423f1cae4a2482717a028 (patch)
treede6887c7a2d9707d3a20eb106a67cc1b55c27a97 /Library/Formula
parent7073a4a310b4077b63ce6af747700672100472ef (diff)
downloadhomebrew-3905b75cfe80df2a19d423f1cae4a2482717a028.tar.bz2
ccrypt 1.10
- remove unused configure switch - use fails_with Closes #20213.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ccrypt.rb15
1 files changed, 8 insertions, 7 deletions
diff --git a/Library/Formula/ccrypt.rb b/Library/Formula/ccrypt.rb
index d3a1a3dca..137d18c5d 100644
--- a/Library/Formula/ccrypt.rb
+++ b/Library/Formula/ccrypt.rb
@@ -2,15 +2,16 @@ require 'formula'
class Ccrypt < Formula
homepage 'http://ccrypt.sourceforge.net/'
- url 'http://ccrypt.sourceforge.net/download/ccrypt-1.9.tar.gz'
- sha1 '5ad1889c71be905c3004c80dc011948c9c35c814'
+ url 'http://ccrypt.sourceforge.net/download/ccrypt-1.10.tar.gz'
+ sha1 '95d4e524abb146946fe6af9d53ed0e5e294b34e2'
- def install
- # Tests fail with clang (build 318) at higher optimization
- ENV.no_optimization if ENV.compiler == :clang
+ fails_with :clang do
+ build 318
+ cause "Tests fail when optimizations are enabled"
+ end
- system "./configure", "--disable-debug",
- "--disable-dependency-tracking",
+ def install
+ system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"