2012-05-08 18:15:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Polarssl < Formula
|
|
|
|
homepage 'http://polarssl.org/'
|
2012-12-07 20:48:05 +00:00
|
|
|
url 'http://polarssl.org/code/releases/polarssl-1.2.3-gpl.tgz'
|
|
|
|
sha1 'b47b3db19c4487c5930eaec23dda0dbd24851146'
|
2012-05-08 18:15:49 +00:00
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "cmake", ".", *std_cmake_args
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|