homebrew-core/Formula/polarssl.rb
Stefan c154cf84b3 polarssl 1.3.2
Closes Homebrew/homebrew#24994.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-12-06 08:01:08 -08:00

17 lines
412 B
Ruby

require 'formula'
class Polarssl < Formula
homepage 'http://polarssl.org/'
url 'https://polarssl.org/download/polarssl-1.3.2-gpl.tgz'
sha1 '2e671bb1bc60ce00db2352be63c4ea38ad2c8b03'
depends_on 'cmake' => :build
conflicts_with 'md5sha1sum', :because => 'both install conflicting binaries'
def install
system "cmake", ".", *std_cmake_args
system "make"
system "make install"
end
end