6278d4de2a
- remove unused configure switch - use fails_with Closes Homebrew/homebrew#20213.
20 lines
526 B
Ruby
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
|