homebrew-core/Formula/pgdbf.rb
Jack Nagel d87063d32f Remove remaining explicit xz build-time deps
These dependencies are automatically detected from the URL, so declaring
them is redundant. If these formulae ever get a head or devel spec, then
explicit xz deps would need to be re-scoped appropriately. Thus we
should remove them.
2014-03-14 23:40:32 -05:00

13 lines
383 B
Ruby

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'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end