blob: bdeaa2411ba7d905893d4edcf23f47fef1aac0dd (
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/code/releases/polarssl-1.2.7-gpl.tgz'
sha256 'd64c2d1247f93cdeb884bd3706dfddffc636634bbf81d3772af750d5b5191328'
depends_on 'cmake' => :build
def install
system "cmake", ".", *std_cmake_args
system "make"
system "make install"
end
end
|