homebrew-core/Formula/kyoto-cabinet.rb
Keisuke Kawahara b2555b61ae kyoto-cabinet 1.2.63
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-06-21 15:49:36 -07:00

13 lines
376 B
Ruby

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