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

class Pgdbf < Formula
  homepage 'https://github.com/kstrauser/pgdbf'
  url 'https://downloads.sourceforge.net/project/pgdbf/pgdbf/0.6.2/pgdbf-0.6.2.tar.xz'
  sha1 '36ddf162b594ac328456a21d057b787c93ec1abb'

  depends_on 'xz' => :build

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