homebrew-core/Formula/mp3gain.rb
Jelle Schühmacher 6ca5f3c86d New formula: mp3gain
MP3Gain analyzes and adjusts mp3 files so that they have the same volume.

Signed-off-by: David Höppner <0xffea@gmail.com>

* use bin.install
2010-04-10 13:55:57 +02:00

14 lines
308 B
Ruby

require 'formula'
class Mp3gain <Formula
version "1.5.1"
url 'http://downloads.sourceforge.net/project/mp3gain/mp3gain/1.5.1/mp3gain-1_5_1-src.zip'
homepage 'http://mp3gain.sourceforge.net'
md5 '71a43bd183bc2a2c37fbf4a633ffb7aa'
def install
system "make"
bin.install 'mp3gain'
end
end