d87063d32f
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.
13 lines
383 B
Ruby
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
|