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/'
|
2013-01-03 21:59:05 +00:00
|
|
|
url 'http://feh.finalrewind.org/feh-2.8.tar.bz2'
|
|
|
|
sha1 'eeb251d5971cf07e632661ef0b514fc3b0c7aca6'
|
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
|