aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2010-04-10 17:30:20 +0200
committerDavid Höppner2010-04-10 17:40:51 +0200
commit5ebe7819f702b82570af2f3d0226f3e702c135f4 (patch)
tree51342d36fb3ae831c6be0992be76895f3f8ce6a4 /Library/Formula
parent2a8a90af441623eb73b02a7b0b5765c3fdbc976d (diff)
downloadhomebrew-5ebe7819f702b82570af2f3d0226f3e702c135f4.tar.bz2
New formula libass
Libass is a portable subtitle renderer for the ASS/SSA (Advanced Substation Alpha/Substation Alpha) subtitle format.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/libass.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/libass.rb b/Library/Formula/libass.rb
new file mode 100644
index 000000000..8f5b93ff1
--- /dev/null
+++ b/Library/Formula/libass.rb
@@ -0,0 +1,14 @@
+require 'formula'
+
+class Libass <Formula
+ url 'http://libass.googlecode.com/files/libass-0.9.9.tar.bz2'
+ homepage 'http://code.google.com/p/libass/'
+ md5 '6f545089d838d524c4f3b12e8ef6ed38'
+
+ depends_on 'pkg-config'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "make install"
+ end
+end