2013-02-08 18:35:42 +00:00
|
|
|
class Frei0r < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Minimalistic plugin API for video effects"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "http://frei0r.dyne.org"
|
|
|
|
url "https://files.dyne.org/frei0r/releases/frei0r-plugins-1.4.tar.gz"
|
|
|
|
sha256 "8470fcabde9f341b729be3be16385ffc8383d6f3328213907a43851b6e83be57"
|
2014-03-07 11:27:06 +00:00
|
|
|
|
2014-10-23 11:11:39 +00:00
|
|
|
bottle do
|
2015-09-22 16:27:12 +00:00
|
|
|
cellar :any_skip_relocation
|
|
|
|
sha256 "960aa91d50697be5587a0124910d4c603354c3dfb660f9fc7dead6ea36d2140c" => :el_capitan
|
2015-11-19 15:45:31 +00:00
|
|
|
sha256 "66426f87d88f4ea884ac74ba0a90d30433c4a00fc7295299bd15a960ef8807e3" => :yosemite
|
|
|
|
sha256 "9e75c7883faa766b20f1d19c85eff4556039a49e65847806ef34cdae89f1c1ca" => :mavericks
|
|
|
|
sha256 "a20918ebf08da3636deb4bb4c3bacaf395186f2bf88685ad8380d665e7402e24" => :mountain_lion
|
2014-10-23 11:11:39 +00:00
|
|
|
end
|
|
|
|
|
2014-03-16 23:53:46 +00:00
|
|
|
depends_on "autoconf" => :build
|
2013-02-08 18:35:42 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2015-08-03 12:55:31 +00:00
|
|
|
system "make", "install"
|
2013-02-08 18:35:42 +00:00
|
|
|
end
|
|
|
|
end
|