Add formula for GQview, a gtk-based image browser.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
9b2dcf543d
commit
94090393ec
1 changed files with 14 additions and 0 deletions
14
Formula/gqview.rb
Normal file
14
Formula/gqview.rb
Normal file
|
@ -0,0 +1,14 @@
|
|||
require 'formula'
|
||||
|
||||
class Gqview <Formula
|
||||
url 'http://downloads.sourceforge.net/project/gqview/gqview/2.0.4/gqview-2.0.4.tar.gz'
|
||||
homepage 'http://gqview.sourceforge.net'
|
||||
md5 '7196deab04db94cec2167637cddc02f9'
|
||||
|
||||
depends_on 'gtk+'
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--mandir=#{man}"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue