2010-05-27 17:17:37 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class KyotoCabinet < Formula
|
2011-07-25 17:29:30 +00:00
|
|
|
url 'http://fallabs.com/kyotocabinet/pkg/kyotocabinet-1.2.69.tar.gz'
|
2010-08-08 00:22:30 +00:00
|
|
|
homepage 'http://fallabs.com/kyotocabinet/'
|
2011-07-25 17:29:30 +00:00
|
|
|
sha1 '93ae2c560f72221cef51d0cb8780eb9e90e9d621'
|
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
|