2011-02-11 20:58:23 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Feh < Formula
|
2012-01-07 18:50:24 +00:00
|
|
|
homepage 'http://feh.finalrewind.org/'
|
2012-10-18 03:07:01 +00:00
|
|
|
url 'http://feh.finalrewind.org/feh-2.7.tar.bz2'
|
|
|
|
sha1 '25c3cf8af2d30b9cc176b36f2a78344ba9ae18f1'
|
2011-02-11 20:58:23 +00:00
|
|
|
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :x11
|
2012-10-13 08:10:55 +00:00
|
|
|
depends_on 'giblib' => :build
|
2011-02-11 20:58:23 +00:00
|
|
|
|
|
|
|
def install
|
2011-09-06 19:03:13 +00:00
|
|
|
system "make", "PREFIX=#{prefix}"
|
2011-02-11 20:58:23 +00:00
|
|
|
system "make", "PREFIX=#{prefix}", "install"
|
|
|
|
end
|
|
|
|
end
|