homebrew-core/Formula/kyoto-cabinet.rb
Pedro Borges 9010d534f0 kyoto-cabinet: Update to 1.2.72
Closes Homebrew/homebrew#9187.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-12-19 13:31:38 -08:00

13 lines
376 B
Ruby

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