homebrew-core/Formula/feh.rb

16 lines
345 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
2014-05-21 06:43:45 +00:00
depends_on "giblib" => :build
def install
system "make", "PREFIX=#{prefix}"
system "make", "PREFIX=#{prefix}", "install"
end
end