homebrew-core/Formula/kyoto-cabinet.rb

14 lines
359 B
Ruby
Raw Normal View History

2010-05-27 17:17:37 +00:00
require 'formula'
class KyotoCabinet <Formula
2010-07-27 20:38:35 +00:00
url 'http://1978th.net/kyotocabinet/kyotocabinet-1.2.0.tar.gz'
2010-05-27 17:17:37 +00:00
homepage 'http://1978th.net/kyotocabinet/'
2010-07-27 20:38:35 +00:00
md5 'c690b932afdb7c0c6051c180d6307f3d'
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