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

class TokyoCabinet < Formula
  homepage 'http://fallabs.com/tokyocabinet/'
  url 'http://fallabs.com/tokyocabinet/tokyocabinet-1.4.47.tar.gz'
  sha1 '18608ac2e6e469e20d1c36ae1117661bb47901c4'

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