2011-03-10 05:11:03 +00:00
|
|
|
class Ccrypt < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Encrypt and decrypt files and streams"
|
2015-02-14 21:23:01 +00:00
|
|
|
homepage "http://ccrypt.sourceforge.net/"
|
|
|
|
url "http://ccrypt.sourceforge.net/download/ccrypt-1.10.tar.gz"
|
|
|
|
mirror "https://mirrors.kernel.org/debian/pool/main/c/ccrypt/ccrypt_1.10.orig.tar.gz"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "87d66da2170facabf6f2fc073586ae2c7320d4689980cfca415c74688e499ba0"
|
2010-01-02 22:38:09 +00:00
|
|
|
|
2015-02-14 21:40:04 +00:00
|
|
|
bottle do
|
|
|
|
sha1 "89c604ac653e2bd1cbf7b56494ab14ac4a6de3f3" => :yosemite
|
|
|
|
sha1 "f6d046eb7552fe541bef3eda66a7155b2c284b80" => :mavericks
|
|
|
|
sha1 "70ed9462ae982f2939f76dab3b335d84db53479f" => :mountain_lion
|
|
|
|
end
|
|
|
|
|
2013-06-04 01:41:42 +00:00
|
|
|
fails_with :clang do
|
|
|
|
build 318
|
|
|
|
cause "Tests fail when optimizations are enabled"
|
|
|
|
end
|
2012-04-30 22:33:39 +00:00
|
|
|
|
2013-06-04 01:41:42 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2012-04-30 22:33:39 +00:00
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
2015-02-14 21:23:01 +00:00
|
|
|
system "make", "install"
|
|
|
|
system "make", "check"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
touch "homebrew.txt"
|
|
|
|
system bin/"ccrypt", "-e", testpath/"homebrew.txt", "-K", "secret"
|
|
|
|
assert File.exist?("homebrew.txt.cpt")
|
|
|
|
assert !File.exist?("homebrew.txt")
|
|
|
|
|
|
|
|
system bin/"ccrypt", "-d", testpath/"homebrew.txt.cpt", "-K", "secret"
|
|
|
|
assert File.exist?("homebrew.txt")
|
|
|
|
assert !File.exist?("homebrew.txt.cpt")
|
2010-01-02 22:38:09 +00:00
|
|
|
end
|
|
|
|
end
|