homebrew-core/Formula/gqview.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

17 lines
503 B
Ruby

require 'formula'
class Gqview < Formula
homepage 'http://gqview.sourceforge.net'
url 'https://downloads.sourceforge.net/project/gqview/gqview/2.0.4/gqview-2.0.4.tar.gz'
sha1 'aae8f1cdae60441472a52d594cb42572d0d79eeb'
depends_on 'pkg-config' => :build
depends_on 'gtk+'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end