aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-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