2011-12-26 21:42:45 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libreplaygain < Formula
|
|
|
|
homepage 'http://www.musepack.net/'
|
|
|
|
url 'http://files.musepack.net/source/libreplaygain_r475.tar.gz'
|
|
|
|
version 'r475'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '7739b4b9cf46e0846663f707a9498a4db0345eaf'
|
2011-12-26 21:42:45 +00:00
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
|
|
|
|
def install
|
2012-05-22 21:37:04 +00:00
|
|
|
system "cmake", ".", *std_cmake_args
|
2011-12-26 21:42:45 +00:00
|
|
|
system "make install"
|
|
|
|
include.install 'include/replaygain/'
|
|
|
|
end
|
|
|
|
end
|