aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cryptopp.rb
blob: ef5b6bb9d44a805f747f43dbe9c3f1ea31b99a4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Cryptopp < Formula
  homepage 'http://www.cryptopp.com/'
  url 'http://downloads.sourceforge.net/project/cryptopp/cryptopp/5.6.2/cryptopp562.zip'
  sha1 'ddc18ae41c2c940317cd6efe81871686846fa293'
  version '5.6.2'

  def install
    # patches welcome to re-enable this on configurations that support it
    ENV.append 'CXXFLAGS', '-DCRYPTOPP_DISABLE_ASM'

    system "make", "CXX=#{ENV.cxx}", "CXXFLAGS=#{ENV.cxxflags}"
    lib.install "libcryptopp.a"
    (include+'cryptopp').install Dir["*.h"]
  end
end