libcuefile r475

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Chris Ballinger 2011-12-26 16:42:21 -05:00 committed by Adam Vandenberg
parent 3f3e80f6d4
commit a5a8346e75

16
Formula/libcuefile.rb Normal file
View file

@ -0,0 +1,16 @@
require 'formula'
class Libcuefile < Formula
homepage 'http://www.musepack.net/'
url 'http://files.musepack.net/source/libcuefile_r475.tar.gz'
md5 '1a6ac52e1080fd54f0f59372345f1e4e'
version 'r475'
depends_on 'cmake' => :build
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
include.install 'include/cuetools/'
end
end