blob: e595386c611d1a723adf9146f846c2b0d0893b2c (
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/'
  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
  |