aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tokyo-cabinet.rb
blob: 39a57806f09df263b29db0ef5db48821dd0250be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class TokyoCabinet < Formula
  url 'http://fallabs.com/tokyocabinet/tokyocabinet-1.4.47.tar.gz'
  homepage 'http://fallabs.com/tokyocabinet/'
  md5 '3d94fe2aebf5d9ff0478ed895bc46fc9'

  def install
    system "./configure", "--prefix=#{prefix}", "--enable-fastest"
    system "make"
    system "make install"
  end
end