aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/chromaprint.rb
diff options
context:
space:
mode:
authorKristofer Henriksson2011-12-21 16:05:22 -0800
committerAdam Vandenberg2011-12-21 16:37:02 -0800
commit11ab9663d12fb2c020740820cb74075f48b6d050 (patch)
tree19c8c5b46feeeb04844f396098fba00c7ebb5e03 /Library/Formula/chromaprint.rb
parent2dd97d15629ddc8748c4e2bd8c19fe92f379d1e4 (diff)
downloadhomebrew-11ab9663d12fb2c020740820cb74075f48b6d050.tar.bz2
Chromaprint 0.5
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/chromaprint.rb')
-rw-r--r--Library/Formula/chromaprint.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/chromaprint.rb b/Library/Formula/chromaprint.rb
new file mode 100644
index 000000000..98c59236a
--- /dev/null
+++ b/Library/Formula/chromaprint.rb
@@ -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