Chromaprint 0.5

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Kristofer Henriksson 2011-12-21 16:05:22 -08:00 committed by Adam Vandenberg
parent bfa320c0e6
commit e2ac123512

14
Formula/chromaprint.rb Normal file
View file

@ -0,0 +1,14 @@
require 'formula'
class Chromaprint < Formula
url 'https://github.com/downloads/lalinsky/chromaprint/chromaprint-0.5.tar.gz'
homepage 'http://acoustid.org/chromaprint'
md5 '59c7b54b7d0b814a0cee593c8ef1d5fd'
depends_on 'cmake' => :build
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end