435ef6f42e
Closes Homebrew/homebrew#15524. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
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.7.tar.bz2'
|
|
sha1 '25c3cf8af2d30b9cc176b36f2a78344ba9ae18f1'
|
|
|
|
depends_on :x11
|
|
depends_on 'giblib' => :build
|
|
|
|
def install
|
|
system "make", "PREFIX=#{prefix}"
|
|
system "make", "PREFIX=#{prefix}", "install"
|
|
end
|
|
end
|