aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDavid Höppner2010-04-10 16:45:29 +0200
committerDavid Höppner2010-04-10 17:40:51 +0200
commitdb0b87d2600d5d6cb37c598934dacb7690437c3d (patch)
tree4833074b45197de564d3cf8d2e20484817f46c12 /Library
parentb57dec71fbcfc47569453f8f8c95c82f9786b8cf (diff)
downloadhomebrew-db0b87d2600d5d6cb37c598934dacb7690437c3d.tar.bz2
New formula a52dec
Liba52 is a free library for decoding ATSC A/52 streams.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/a52dec.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/a52dec.rb b/Library/Formula/a52dec.rb
new file mode 100644
index 000000000..f1b024ebb
--- /dev/null
+++ b/Library/Formula/a52dec.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class A52dec <Formula
+ url 'http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz'
+ homepage 'http://liba52.sourceforge.net/'
+ md5 'caa9f5bc44232dc8aeea773fea56be80'
+
+ def install
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--enable-shared",
+ "--mandir=#{man}"
+ system "make install"
+ end
+end