homebrew-core/Formula/mp3gain.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

14 lines
322 B
Ruby

require 'formula'
class Mp3gain < Formula
homepage 'http://mp3gain.sourceforge.net'
url 'https://downloads.sourceforge.net/project/mp3gain/mp3gain/1.5.2/mp3gain-1_5_2_r2-src.zip'
version '1.5.2'
sha1 'cc7de597861803ac55199b8093c84f86fb5807f1'
def install
system "make"
bin.install 'mp3gain'
end
end