aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/feh.rb
blob: 8e30aa96c14b29889162a9b99bf92e1046093e35 (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-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