aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorElad Gariany2013-02-08 20:35:42 +0200
committerJack Nagel2013-02-08 21:38:58 -0600
commitb05d4cd464ce9b2a224937c2ddb5373e3c8db611 (patch)
tree65ff002601b356b28ad3cd6619410957a3305caa /Library
parentaa609734719edd943bda2f3b133c96a743f4ff03 (diff)
downloadhomebrew-b05d4cd464ce9b2a224937c2ddb5373e3c8db611.tar.bz2
New Formula: frei0r
Frei0r is a minimalistic plugin API for video sources and filters. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/frei0r.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/frei0r.rb b/Library/Formula/frei0r.rb
new file mode 100644
index 000000000..037b42935
--- /dev/null
+++ b/Library/Formula/frei0r.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Frei0r < Formula
+ homepage 'http://www.piksel.org/frei0r'
+ url 'http://www.piksel.no/frei0r/releases/frei0r-plugins-1.3.tar.gz'
+ sha1 'f6b463440017934d01ac3c8fdf70b93c915e3d08'
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end