homebrew-core/Formula/feh.rb
Brett Koonce bfa6950ebe feh 2.9.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-19 20:03:54 -08:00

15 lines
346 B
Ruby

require 'formula'
class Feh < Formula
homepage 'http://feh.finalrewind.org/'
url 'http://feh.finalrewind.org/feh-2.9.1.tar.bz2'
sha1 'd6effb0bb3074315114b2590722fae9712a531ad'
depends_on :x11
depends_on 'giblib' => :build
def install
system "make", "PREFIX=#{prefix}"
system "make", "PREFIX=#{prefix}", "install"
end
end