blob: 36dd9e652058c961d1ee1a90326b07d039eb2b8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Cryptopp <Formula
url 'http://downloads.sourceforge.net/project/cryptopp/cryptopp/5.6.0/cryptopp560.zip'
homepage 'http://www.cryptopp.com/'
sha1 'b836783ebd72d5bc6a916620ab2b1ecec316fef1'
version '5.6.0'
def install
system "make"
lib.install "libcryptopp.a"
(include+'cryptopp').install Dir["*.h"]
end
end
|