aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/feh.rb
blob: 9bfa381e02e9ea818f9cc2512154300c558eeddc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Feh < Formula
  url 'http://feh.finalrewind.org/feh-1.16.tar.bz2'
  homepage 'http://freshmeat.net/projects/feh'
  md5 'd8583e8dde2f383dc9a8dfc28bf6b348'

  depends_on 'giblib' => :build

  def install
    ENV.x11

    system "make", "PREFIX=#{prefix}"
    system "make", "PREFIX=#{prefix}", "install"
  end
end