aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/polarssl.rb
blob: 4ca8de631fdf826de0c15388b4e4f941e05f2684 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Polarssl < Formula
  homepage 'http://polarssl.org/'
  url 'https://polarssl.org/download/polarssl-1.3.7-gpl.tgz'
  sha1 '4bfce7f2e833bead53ecd38098325a784ada5c39'

  depends_on 'cmake' => :build

  conflicts_with 'md5sha1sum', :because => 'both install conflicting binaries'

  def install
    system "cmake", ".",  *std_cmake_args
    system "make"
    system "make install"
  end
end