7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
12 lines
348 B
Ruby
12 lines
348 B
Ruby
require 'formula'
|
|
|
|
class OpencoreAmr <Formula
|
|
url 'http://downloads.sourceforge.net/opencore-amr/opencore-amr-0.1.2.tar.gz'
|
|
homepage 'http://opencore-amr.sourceforge.net/'
|
|
md5 '8e8b8b253eb046340ff7b6bf7a6ccd3e'
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|