homebrew-core/Formula/feh.rb
Brett Koonce a6f1de8df2 feh: add imlib2 dependency
Fixes Homebrew/homebrew#31146.
Closes Homebrew/homebrew#31149.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2014-07-29 20:07:13 -05:00

16 lines
377 B
Ruby

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