blob: 50ee9dc37dce939242d10ccccb95cda67ecdbe05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Polarssl < Formula
homepage 'http://polarssl.org/'
url 'https://polarssl.org/download/polarssl-1.3.1-gpl.tgz'
sha1 'b33856a1b2f736b18a49a20d48986bce6b3133f5'
depends_on 'cmake' => :build
def install
system "cmake", ".", *std_cmake_args
system "make"
system "make install"
end
end
|