homebrew-core/Formula/beecrypt.rb
2016-11-02 08:47:18 -07:00

75 lines
2.2 KiB
Ruby

class Beecrypt < Formula
desc "C/C++ cryptography library"
homepage "http://beecrypt.sourceforge.net"
url "https://downloads.sourceforge.net/project/beecrypt/beecrypt/4.2.1/beecrypt-4.2.1.tar.gz"
sha256 "286f1f56080d1a6b1d024003a5fa2158f4ff82cae0c6829d3c476a4b5898c55d"
revision 6
bottle do
cellar :any
sha256 "45c68cd3ba2c04838c463abeb94e6ebec70d48edbcbdbc0fbec9a16ebb203d66" => :sierra
sha256 "cfb11a2e9a6d42635b3534437cdb72f854e1c6cf68bc5398bdeacf19474078cb" => :el_capitan
sha256 "ec32147dc97502c42673b24b15ce98c769310ced85c8096c91ce6d768fb00c76" => :yosemite
end
depends_on "libtool" => :build
depends_on "icu4c"
# fix build with newer clang, gcc 4.7 (https://bugs.gentoo.org/show_bug.cgi?id=413951)
patch :p0, :DATA
def install
cp Dir["#{Formula["libtool"].opt_share}/libtool/*/config.{guess,sub}"], buildpath
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-openmp",
"--without-java",
"--without-python"
system "make"
system "make", "check"
system "make", "install"
end
test do
(testpath/"test.c").write <<-EOS.undent
#include "beecrypt/base64.h"
#include "beecrypt/sha256.h"
#include <stdio.h>
int main(void)
{
sha256Param hash;
const byte *string = (byte *) "abc";
byte digest[32];
byte *crc;
sha256Reset(&hash);
sha256Update(&hash, string, sizeof(string) / sizeof(*string));
sha256Process(&hash);
sha256Digest(&hash, digest);
printf("%s\\n", crc = b64crc(digest, 32));
free(crc);
return 0;
}
EOS
system ENV.cc, "test.c", "-lbeecrypt", "-o", "test"
assert_match /ZF8D/, shell_output("./test")
end
end
__END__
--- include/beecrypt/c++/util/AbstractSet.h~ 2009-06-17 13:05:55.000000000 +0200
+++ include/beecrypt/c++/util/AbstractSet.h 2012-06-03 17:45:55.229399461 +0200
@@ -56,7 +56,7 @@
if (c->size() != size())
return false;
- return containsAll(*c);
+ return this->containsAll(*c);
}
return false;
}