lastfm_fplib formula

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Jan Berkel 2010-05-20 18:25:53 +02:00 committed by Adam Vandenberg
parent aa3008e53f
commit f66c2ece9e

18
Formula/lastfm_fplib.rb Normal file
View file

@ -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