blob: dcdf7c84f31063fe6299dbef007779b65c63c2ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Mp3gain < Formula
homepage 'http://mp3gain.sourceforge.net'
url 'http://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
|