diff options
| author | Jan Berkel | 2010-05-20 18:25:53 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2010-06-15 20:43:25 -0700 |
| commit | cbaff3e6e2adcd0ef3ccf7ef6a68e002054fc89e (patch) | |
| tree | a48640a893c147e435f10219a071837811a97d22 /Library | |
| parent | f4f5394acf02ed901b10bf7931282f3c091ef32b (diff) | |
| download | homebrew-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.rb | 18 |
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 |
