2011-10-08 19:52:39 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libtommath < Formula
|
|
|
|
homepage 'http://libtom.org/?page=features&newsitems=5&whatfile=ltm'
|
2013-01-29 05:28:16 +00:00
|
|
|
url 'http://libtom.org/files/ltm-0.42.0.tar.bz2'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '9b192701cf62b85e9bd65fbb4d622d04cfa5ee0d'
|
2011-10-08 19:52:39 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
ENV['DESTDIR'] = prefix
|
2014-01-30 03:30:28 +00:00
|
|
|
system "make"
|
|
|
|
include.install Dir['tommath*.h']
|
|
|
|
lib.install 'libtommath.a'
|
2011-10-08 19:52:39 +00:00
|
|
|
end
|
|
|
|
end
|