diff options
| author | Michael S. Fischer | 2012-05-13 18:12:31 -0700 |
|---|---|---|
| committer | Jack Nagel | 2012-05-20 16:18:59 -0500 |
| commit | 915dea9f13ea82b53d78b713f23a9765c8170c2d (patch) | |
| tree | a46222d8295edfec82a008d2c3c6ed059258146e /Library/Formula | |
| parent | 173f3f4cbae3355b2ae8307041e772a078eff98b (diff) | |
| download | homebrew-915dea9f13ea82b53d78b713f23a9765c8170c2d.tar.bz2 | |
New formula: libvo-aacenc
Library containing VisualOn implementation of Advanced Audio Coding
(AAC) encoder. May be used by ffmpeg, among other tools, to provide
AAC encoding capability.
Closes #12231.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libvo-aacenc.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/libvo-aacenc.rb b/Library/Formula/libvo-aacenc.rb new file mode 100644 index 000000000..0a7ec1e21 --- /dev/null +++ b/Library/Formula/libvo-aacenc.rb @@ -0,0 +1,12 @@ +require 'formula' + +class LibvoAacenc < Formula + homepage 'http://opencore-amr.sourceforge.net/' + url 'http://sourceforge.net/projects/opencore-amr/files/vo-aacenc/vo-aacenc-0.1.2.tar.gz' + md5 'cc862dce14ea5d688506904160c65a02' + + def install + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "make install" + end +end |
