aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/redstore.rb
blob: d6dbd55237885d0a79c508cfa3b882b7d4343dde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Redstore < Formula
  homepage 'http://www.aelius.com/njh/redstore/'
  url 'http://www.aelius.com/njh/redstore/redstore-0.5.4.tar.gz'
  sha1 '6de3eb072ea89cdc0d5a9764b5570c87ca01d5fa'

  depends_on 'pkg-config' => :build
  depends_on 'redland'

  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end