blob: e1d2d3b074a122163eaf57f94580ef7bb8302fb8 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 | require 'formula'
class Convertlit < Formula
  homepage 'http://www.convertlit.com/'
  url 'http://www.convertlit.com/clit18src.zip'
  md5 'd691d4729485fe5d73e3f0937d8fb42e'
  version '1.8'
  depends_on 'libtommath'
  def install
    inreplace 'clit18/Makefile' do |s|
      s.gsub! "-I ../libtommath-0.30", "#{HOMEBREW_PREFIX}/include"
      s.gsub! "../libtommath-0.30/libtommath.a", "#{HOMEBREW_PREFIX}/lib/libtommath.a"
    end
    cd "lib" do
      system "make"
    end
    cd "clit18" do
      system "make"
      bin.install 'clit'
    end
  end
end
 |