pgdbf 0.6.1

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
aas 2012-03-02 11:22:36 +06:00 committed by Adam Vandenberg
parent dd66ddb8b2
commit fd2a88d212
1 changed files with 15 additions and 0 deletions

15
Formula/pgdbf.rb Normal file
View File

@ -0,0 +1,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