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

class TokyoCabinet < Formula
  homepage 'http://fallabs.com/tokyocabinet/'
  url 'http://fallabs.com/tokyocabinet/tokyocabinet-1.4.48.tar.gz'
  mirror 'http://ftp.de.debian.org/debian/pool/main/t/tokyocabinet/tokyocabinet_1.4.48.orig.tar.gz'
  sha256 'a003f47c39a91e22d76bc4fe68b9b3de0f38851b160bbb1ca07a4f6441de1f90'

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