homebrew-core/Formula/feh.rb
Brett Koonce 83f28d883c feh 2.8
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-03 14:04:51 -08:00

15 lines
344 B
Ruby

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