2014-05-21 06:43:45 +00:00
|
|
|
require "formula"
|
2011-02-11 20:58:23 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Feh < Formula
|
2014-05-21 06:43:45 +00:00
|
|
|
homepage "http://feh.finalrewind.org/"
|
|
|
|
url "http://feh.finalrewind.org/feh-2.12.tar.bz2"
|
|
|
|
sha1 "30eb2b778858b1f4ce97e44c8225758185b0c588"
|
2011-02-11 20:58:23 +00:00
|
|
|
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :x11
|
2014-05-21 06:43:45 +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
|