homebrew-core/Formula/kyoto-cabinet.rb
Daniel Peebles 684584d246 kyoto-cabinet 1.2.21
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-11-04 11:54:28 -07:00

13 lines
366 B
Ruby

require 'formula'
class KyotoCabinet <Formula
url 'http://fallabs.com/kyotocabinet/pkg/kyotocabinet-1.2.21.tar.gz'
homepage 'http://fallabs.com/kyotocabinet/'
md5 'ed0a07db76dada68117e75d3181c884e'
def install
system "./configure", "--disable-debug", "--prefix=#{prefix}"
system "make" # Separate steps required
system "make install"
end
end