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
14 lines
308 B
Ruby
14 lines
308 B
Ruby
require 'formula'
|
|
|
|
class Mp3gain <Formula
|
|
url 'http://downloads.sourceforge.net/project/mp3gain/mp3gain/1.5.1/mp3gain-1_5_1-src.zip'
|
|
version "1.5.1"
|
|
homepage 'http://mp3gain.sourceforge.net'
|
|
md5 '71a43bd183bc2a2c37fbf4a633ffb7aa'
|
|
|
|
def install
|
|
system "make"
|
|
bin.install 'mp3gain'
|
|
end
|
|
end
|
|
|