homebrew-core/Formula/kyoto-cabinet.rb

14 lines
376 B
Ruby
Raw Normal View History

2010-05-27 17:17:37 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class KyotoCabinet < Formula
url 'http://fallabs.com/kyotocabinet/pkg/kyotocabinet-1.2.72.tar.gz'
homepage 'http://fallabs.com/kyotocabinet/'
sha1 '3ce2a2b2f8f8d36aa6dea840f62f88342fcd2a3a'
2010-05-27 17:17:37 +00:00
def install
system "./configure", "--disable-debug", "--prefix=#{prefix}"
system "make" # Separate steps required
system "make install"
end
end