diff options
| author | Max Howell | 2010-07-09 09:03:29 -0400 |
|---|---|---|
| committer | Max Howell | 2010-07-09 09:03:29 -0400 |
| commit | a149f24bc64c43edbf0152bd72f41b13e38e3119 (patch) | |
| tree | 886cfe4cf6714c29f06cebb3e8085bc62abc00b9 /Library/Formula | |
| parent | d5c16f2fdbc90e063b527394b4d9dc48d7976acc (diff) | |
| download | homebrew-a149f24bc64c43edbf0152bd72f41b13e38e3119.tar.bz2 | |
Last.fm CLI Fingerprinting Client formula
A tool to return probable metadata for MP3 files
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/lastfmfpclient.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/lastfmfpclient.rb b/Library/Formula/lastfmfpclient.rb new file mode 100644 index 000000000..6fab9cac7 --- /dev/null +++ b/Library/Formula/lastfmfpclient.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Lastfmfpclient <Formula + url 'http://github.com/lastfm/Fingerprinter/tarball/9ee83a51ac9058ff53c9' + version '1.6' + homepage 'http://github.com/lastfm/Fingerprinter' + md5 'ab909b4d6dcc6182afae616749ce0fdc' + + depends_on 'cmake' + depends_on 'taglib' + depends_on 'fftw' + depends_on 'mad' + depends_on 'libsamplerate' + + def install + system "cmake . #{std_cmake_parameters}" + system "make install" + end +end |
