38 lines
1.2 KiB
Ruby
38 lines
1.2 KiB
Ruby
class Cryptopp < Formula
|
|
homepage "http://www.cryptopp.com/"
|
|
url "https://downloads.sourceforge.net/project/cryptopp/cryptopp/5.6.2/cryptopp562.zip"
|
|
mirror "http://www.cryptopp.com/cryptopp562.zip"
|
|
sha256 "5cbfd2fcb4a6b3aab35902e2e0f3b59d9171fee12b3fc2b363e1801dfec53574"
|
|
version "5.6.2"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "501fe96896a6163537109a046f491358eaa3075d94b693ac751f4028638d484b" => :yosemite
|
|
sha256 "87e605330ba941823be11abf5517354b1d7aeecc3e53bea4a1aa6415acc9f89a" => :mavericks
|
|
sha256 "30508cb32dc476ff24e405c64d3b535a6e6a61dabb93810860c58344759c7de5" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
system "make", "CXX=#{ENV.cxx}"
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<-EOS.undent
|
|
#include <cryptopp/sha.h>
|
|
#include <string>
|
|
using namespace CryptoPP;
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
byte digest[SHA::DIGESTSIZE];
|
|
string data = "Hello World!";
|
|
SHA().CalculateDigest(digest, (byte*) data.c_str(), data.length());
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cxx, "test.cpp", "-L#{lib}", "-lcryptopp", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|