e865413acd
References Homebrew/homebrew#15325, Homebrew/homebrew#15390.
15 lines
344 B
Ruby
15 lines
344 B
Ruby
require 'formula'
|
|
|
|
class Feh < Formula
|
|
homepage 'http://feh.finalrewind.org/'
|
|
url 'http://feh.finalrewind.org/feh-2.5.tar.bz2'
|
|
sha1 'd1bf7fa8ec6b5d1ce16c291edf38d45de01f252d'
|
|
|
|
depends_on :x11
|
|
depends_on 'giblib' => :build
|
|
|
|
def install
|
|
system "make", "PREFIX=#{prefix}"
|
|
system "make", "PREFIX=#{prefix}", "install"
|
|
end
|
|
end
|