aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ffmpeg.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/ffmpeg.rb b/Library/Formula/ffmpeg.rb
new file mode 100644
index 000000000..f694a81a5
--- /dev/null
+++ b/Library/Formula/ffmpeg.rb
@@ -0,0 +1,14 @@
+require 'brewkit'
+
+class Ffmpeg <Formula
+ @head='svn://svn.ffmpeg.org/ffmpeg/trunk'
+ @homepage='http://ffmpeg.org/'
+
+ def install
+ system "./configure", "--prefix=#{prefix}",
+ "--disable-debug",
+ "--enable-nonfree",
+ "arch=x86_64"
+ system "make install"
+ end
+end