2012-05-08 18:15:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Polarssl < Formula
|
|
|
|
homepage 'http://polarssl.org/'
|
2014-01-11 01:38:46 +00:00
|
|
|
url 'https://polarssl.org/download/polarssl-1.3.3-gpl.tgz'
|
|
|
|
sha1 'c1072e97b21e94721b8d37509a589ea10249fdbd'
|
2012-05-08 18:15:49 +00:00
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
|
2013-11-13 04:56:02 +00:00
|
|
|
conflicts_with 'md5sha1sum', :because => 'both install conflicting binaries'
|
|
|
|
|
2012-05-08 18:15:49 +00:00
|
|
|
def install
|
|
|
|
system "cmake", ".", *std_cmake_args
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|