aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJan Berkel2010-05-20 18:25:53 +0200
committerAdam Vandenberg2010-06-15 20:43:25 -0700
commitcbaff3e6e2adcd0ef3ccf7ef6a68e002054fc89e (patch)
treea48640a893c147e435f10219a071837811a97d22 /Library
parentf4f5394acf02ed901b10bf7931282f3c091ef32b (diff)
downloadhomebrew-cbaff3e6e2adcd0ef3ccf7ef6a68e002054fc89e.tar.bz2
lastfm_fplib formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/lastfm_fplib.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/lastfm_fplib.rb b/Library/Formula/lastfm_fplib.rb
new file mode 100644
index 000000000..6eee701b9
--- /dev/null
+++ b/Library/Formula/lastfm_fplib.rb
@@ -0,0 +1,18 @@
+require 'formula'
+
+class LastfmFplib <Formula
+ head 'svn://svn.audioscrobbler.net/recommendation/MusicID/lastfm_fplib'
+ homepage 'http://blog.last.fm/2007/08/29/audio-fingerprinting-for-clean-metadata'
+ md5 ''
+
+ depends_on 'cmake'
+ depends_on 'taglib'
+ depends_on 'mad'
+ depends_on 'libsamplerate'
+ depends_on 'fftw'
+
+ def install
+ system "cmake . #{std_cmake_parameters}"
+ system "make install"
+ end
+end