blob: ddcb5b5e77f789167bafb162a05bdcfd80f7cbe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Feh < Formula
homepage 'http://feh.finalrewind.org/'
url 'http://feh.finalrewind.org/feh-2.5.tar.bz2'
sha1 'd1bf7fa8ec6b5d1ce16c291edf38d45de01f252d'
depends_on 'giblib' => :build
depends_on :x11
def install
system "make", "PREFIX=#{prefix}"
system "make", "PREFIX=#{prefix}", "install"
end
end
|