homebrew-core/Formula/kyoto-cabinet.rb
Huahang Liu a8be3b3399 kyoto-cabinet 1.2.58
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-06-05 08:01:36 -07:00

13 lines
376 B
Ruby

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