21 lines
550 B
Ruby
21 lines
550 B
Ruby
require 'formula'
|
|
|
|
class Convertlit < Formula
|
|
homepage 'http://www.convertlit.com/'
|
|
url 'http://www.convertlit.com/clit18src.zip'
|
|
sha1 '0fa9aead468bd8640c49374d46d78d2a3e79489f'
|
|
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
|
|
|
|
system "make", "-C", "lib"
|
|
system "make", "-C", "clit18"
|
|
bin.install "clit18/clit"
|
|
end
|
|
end
|