homebrew-core/Formula/polarssl.rb
Birger J. Nordølum 0da1202ad3 polarssl 1.2.4
Closes Homebrew/homebrew#17517.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-01 18:37:48 -08:00

15 lines
336 B
Ruby

require 'formula'
class Polarssl < Formula
homepage 'http://polarssl.org/'
url 'http://polarssl.org/code/releases/polarssl-1.2.4-gpl.tgz'
sha1 '75690f234392e2d663abd66750a9e87ee627e3e8'
depends_on 'cmake' => :build
def install
system "cmake", ".", *std_cmake_args
system "make"
system "make install"
end
end