homebrew-core/Formula/polarssl.rb

16 lines
336 B
Ruby

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