aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/tokyo-cabinet.rb
blob: d3481935ede7b222793e251c68f14540ab98d077 (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.48.tar.gz'
  sha256 'a003f47c39a91e22d76bc4fe68b9b3de0f38851b160bbb1ca07a4f6441de1f90'

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