blob: 65c682b4205373cc7f614f79b8f2983f65de8c1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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'
depends_on 'cmake' => :build
depends_on 'taglib'
depends_on 'mad'
depends_on 'libsamplerate'
depends_on 'fftw'
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end
|