2014-05-17 04:13:00 +00:00
|
|
|
require "formula"
|
2013-11-17 19:28:26 +00:00
|
|
|
|
|
|
|
class Fsv < Formula
|
2014-05-17 04:13:00 +00:00
|
|
|
homepage "http://fsv.sourceforge.net/"
|
2014-05-17 04:40:02 +00:00
|
|
|
url "https://github.com/mcuelenaere/fsv.git", :tag => "fsv-0.9-1"
|
|
|
|
version "0.9.1"
|
2013-11-17 19:28:26 +00:00
|
|
|
|
2014-05-17 04:13:00 +00:00
|
|
|
depends_on "pkg-config" => :build
|
|
|
|
depends_on "autoconf" => :build
|
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "libtool" => :build
|
2013-11-17 19:28:26 +00:00
|
|
|
depends_on :x11
|
2014-05-17 04:13:00 +00:00
|
|
|
depends_on "gtk+"
|
|
|
|
depends_on "gtkglarea"
|
2013-11-17 19:28:26 +00:00
|
|
|
|
|
|
|
def install
|
2014-05-17 04:13:00 +00:00
|
|
|
ENV["LIBTOOLIZE"] = "glibtoolize"
|
|
|
|
system "./autogen.sh"
|
2013-11-17 19:28:26 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
end
|