fdk-aac 0.1.0
Closes Homebrew/homebrew#15256. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
e1b744794b
commit
eb20c42946
1 changed files with 20 additions and 0 deletions
20
Formula/fdk-aac.rb
Normal file
20
Formula/fdk-aac.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
require 'formula'
|
||||
|
||||
class FdkAac < Formula
|
||||
homepage 'http://sourceforge.net/projects/opencore-amr/'
|
||||
url 'http://downloads.sourceforge.net/opencore-amr/fdk-aac-0.1.0.tar.gz'
|
||||
sha1 '4798377069f5f10e8b04e00a3d5a2d15bedfcb47'
|
||||
|
||||
head 'git://opencore-amr.git.sourceforge.net/gitroot/opencore-amr/fdk-aac'
|
||||
|
||||
depends_on :automake => :build
|
||||
depends_on :libtool => :build
|
||||
|
||||
def install
|
||||
system "autoreconf -fvi"
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}",
|
||||
"--disable-shared"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue