homebrew-core/Formula/feh.rb
Brett Koonce 11ad59e729 feh 2.9.3
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-15 19:53:58 -07:00

15 lines
346 B
Ruby

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