homebrew-core/Formula/opencore-amr.rb
Jaime Marquínez Ferrándiz 74c83fa9f6 Batch convert http download urls from SourceForge to https
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-03-02 09:16:53 -08:00

12 lines
359 B
Ruby

require 'formula'
class OpencoreAmr < Formula
homepage 'http://opencore-amr.sourceforge.net/'
url 'https://downloads.sourceforge.net/opencore-amr/opencore-amr-0.1.3.tar.gz'
sha1 '737f00e97a237f4ae701ea55913bb38dc5513501'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end