6b01891cf3
NOTE lastfm_fplib is the exact same formula! We need to solve deletion/renames and remove one of them. Fixes Homebrew/homebrew#13485.
18 lines
471 B
Ruby
18 lines
471 B
Ruby
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
|
|
Formula.factory("lastfmfpclient").inreplace_fix
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make install"
|
|
end
|
|
end
|