homebrew-core/Formula/botan.rb

13 lines
282 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Botan < Formula
2010-11-23 10:37:33 +00:00
url 'http://botan.randombit.net/files/Botan-1.8.11.tgz'
homepage 'http://botan.randombit.net/'
2010-11-23 10:37:33 +00:00
md5 'ccb2c3cb8a324214a89b45a03422870b'
def install
system "./configure.py", "--prefix=#{prefix}"
system "make install"
end
end