diff options
| author | Chris Ballinger | 2011-12-26 16:42:21 -0500 | 
|---|---|---|
| committer | Adam Vandenberg | 2012-03-18 14:28:57 -0700 | 
| commit | eb6e4bbda0d3d5eefde16cdccc24702c3de0629a (patch) | |
| tree | 9bea2c76fcfceca926b11058fffe1538fb19c847 /Library/Formula/libcuefile.rb | |
| parent | bfdeb87a2cc93ac4f24239f1e577909438bdf6e8 (diff) | |
| download | homebrew-eb6e4bbda0d3d5eefde16cdccc24702c3de0629a.tar.bz2 | |
libcuefile r475
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/libcuefile.rb')
| -rw-r--r-- | Library/Formula/libcuefile.rb | 16 | 
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/libcuefile.rb b/Library/Formula/libcuefile.rb new file mode 100644 index 000000000..43ca280cc --- /dev/null +++ b/Library/Formula/libcuefile.rb @@ -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  | 
