blob: 097d946120a7618c4bd80bc6e44cc676d0384747 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | require 'formula'
class Pgdbf < Formula
  homepage 'http://pgdbf.sourceforge.net'
  url 'http://downloads.sourceforge.net/project/pgdbf/pgdbf/0.6.1/pgdbf-0.6.1.tar.xz'
  md5 'fc4de726f44ce403c49ef184beaffe02'
  depends_on 'xz' => :build
  def install
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
 |