homebrew-core/Formula/ccrypt.rb
Jack Nagel 6278d4de2a ccrypt 1.10
- remove unused configure switch
 - use fails_with

Closes Homebrew/homebrew#20213.
2013-06-03 20:42:06 -05:00

20 lines
526 B
Ruby

require 'formula'
class Ccrypt < Formula
homepage 'http://ccrypt.sourceforge.net/'
url 'http://ccrypt.sourceforge.net/download/ccrypt-1.10.tar.gz'
sha1 '95d4e524abb146946fe6af9d53ed0e5e294b34e2'
fails_with :clang do
build 318
cause "Tests fail when optimizations are enabled"
end
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
system "make check"
end
end