homebrew-core/Formula/libvo-aacenc.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
374 B
Ruby

require 'formula'
class LibvoAacenc < Formula
homepage 'http://opencore-amr.sourceforge.net/'
url 'https://downloads.sourceforge.net/project/opencore-amr/vo-aacenc/vo-aacenc-0.1.2.tar.gz'
sha1 'ac56325c05eba4c4f8fe2c5443121753f4d70255'
def install
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end