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

class KyotoCabinet < Formula
  url 'http://fallabs.com/kyotocabinet/pkg/kyotocabinet-1.2.51.tar.gz'
  homepage 'http://fallabs.com/kyotocabinet/'
  md5 '220d8896cac4917ad839810eddfbe18b'

  def install
    system "./configure", "--disable-debug", "--prefix=#{prefix}"
    system "make" # Separate steps required
    system "make install"
  end
end