homebrew-core/Formula/kyoto-cabinet.rb
swdyh 57bb17b53b kyoto-cabinet 1.2.26
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-12-02 20:40:41 -08:00

13 lines
366 B
Ruby

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