blob: cc98826dc7fc14a53992eb1a4aef5ab36f6a9f40 (
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.11.2.tar.bz2'
homepage 'http://freshmeat.net/projects/feh'
md5 '3b2354d78a882ce02b429bbe053467a2'
depends_on 'giblib' => :build
def install
ENV.x11
system "make"
system "make", "PREFIX=#{prefix}", "install"
end
end
|