homebrew-core/Formula/kyoto-cabinet.rb
Eungju PARK b11001e7c7 kyoto-cabinet: Update to 1.2.34.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-01-14 20:54:34 -08:00

13 lines
366 B
Ruby

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