homebrew-core/Formula/feh.rb
Brett Koonce 435ef6f42e feh 2.7
Closes Homebrew/homebrew#15524.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-18 10:11:39 -07:00

15 lines
344 B
Ruby

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