homebrew-core/Formula/lastfm_fplib.rb
Max Howell 6b01891cf3 Fix lastfmfpclient compilation with clang
NOTE lastfm_fplib is the exact same formula! We need to solve deletion/renames and remove one of them.

Fixes Homebrew/homebrew#13485.
2012-08-22 09:46:39 -04:00

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