homebrew-core/Formula/feh.rb
Brett Koonce c1a335ae82 feh 2.5
Closes Homebrew/homebrew#13957.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-05 20:58:53 -07:00

15 lines
344 B
Ruby

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