homebrew-core/Formula/feh.rb

17 lines
330 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Feh < Formula
url 'http://feh.finalrewind.org/feh-2.2.tar.bz2'
homepage 'http://feh.finalrewind.org/'
md5 '7dee285e8dd34f69058b0977283b3a8a'
depends_on 'giblib' => :build
def install
ENV.x11
system "make", "PREFIX=#{prefix}"
system "make", "PREFIX=#{prefix}", "install"
end
end