homebrew-core/Formula/kyoto-cabinet.rb
Hideo Kimura 946aee51c0 update kyoto-cabinet to 1.2.30
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-12-26 12:23:07 -08:00

13 lines
366 B
Ruby

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