blob: 4b3a92d875c20349e099e4a6128fb98c9122deb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class LastfmFplib < Formula
homepage 'http://blog.last.fm/2007/08/29/audio-fingerprinting-for-clean-metadata'
head 'svn://svn.audioscrobbler.net/recommendation/MusicID/lastfm_fplib'
depends_on 'cmake' => :build
depends_on 'taglib'
depends_on 'mad'
depends_on 'libsamplerate'
depends_on 'fftw'
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end
|