aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorChristoph Sturm2009-09-28 01:48:11 +0200
committerMax Howell2009-09-30 01:24:31 +0100
commit82475f9e5b76405b5f093bd91b2dea5650f785d0 (patch)
treec2b62b905628355b4df351ee602c0732c3247e86 /Library/Formula
parent6015abbf505befcf619c0b1ec291976f311743e1 (diff)
downloadhomebrew-82475f9e5b76405b5f093bd91b2dea5650f785d0.tar.bz2
x264 formula
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/x264.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/x264.rb b/Library/Formula/x264.rb
new file mode 100644
index 000000000..2e9f0f13a
--- /dev/null
+++ b/Library/Formula/x264.rb
@@ -0,0 +1,13 @@
+require 'brewkit'
+
+class X264 <Formula
+ head 'git://git.videolan.org/x264.git'
+ depends_on 'yasm'
+
+ homepage 'http://www.videolan.org/developers/x264.html'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking","--enable-shared"
+ system "make install"
+ end
+end