2012-05-08 18:15:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Polarssl < Formula
|
|
|
|
homepage 'http://polarssl.org/'
|
2013-02-02 19:24:58 +00:00
|
|
|
url 'http://polarssl.org/code/releases/polarssl-1.2.5-gpl.tgz'
|
|
|
|
sha1 '84a703feaeb00cb5fba74a4aa7168e79128bbb19'
|
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
|