2012-05-08 18:15:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Polarssl < Formula
|
|
|
|
homepage 'http://polarssl.org/'
|
2014-05-17 20:05:33 +00:00
|
|
|
url 'https://polarssl.org/download/polarssl-1.3.7-gpl.tgz'
|
|
|
|
sha1 '4bfce7f2e833bead53ecd38098325a784ada5c39'
|
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
|