homebrew-core/Formula/feh.rb

19 lines
441 B
Ruby
Raw Normal View History

2014-05-21 06:43:45 +00:00
require "formula"
2011-03-10 05:11:03 +00:00
class Feh < Formula
2014-05-21 06:43:45 +00:00
homepage "http://feh.finalrewind.org/"
url "http://feh.finalrewind.org/feh-2.12.tar.bz2"
sha1 "30eb2b778858b1f4ce97e44c8225758185b0c588"
depends_on :x11
depends_on "imlib2"
depends_on "libexif" => :recommended
def install
args = []
args << "exif=1" if build.with? "libexif"
system "make", "PREFIX=#{prefix}", *args
system "make", "PREFIX=#{prefix}", "install"
end
end