6b01891cf3
NOTE lastfm_fplib is the exact same formula! We need to solve deletion/renames and remove one of them. Fixes Homebrew/homebrew#13485.
30 lines
896 B
Ruby
30 lines
896 B
Ruby
require 'formula'
|
|
|
|
class Lastfmfpclient < Formula
|
|
homepage 'https://github.com/lastfm/Fingerprinter'
|
|
url 'https://github.com/lastfm/Fingerprinter/tarball/9ee83a51ac9058ff53c9'
|
|
version '1.6'
|
|
md5 'ab909b4d6dcc6182afae616749ce0fdc'
|
|
|
|
depends_on 'cmake' => :build
|
|
depends_on 'taglib'
|
|
depends_on 'fftw'
|
|
depends_on 'mad'
|
|
depends_on 'libsamplerate'
|
|
|
|
def inreplace_fix
|
|
# This project was made on Windows (LOL), patches against Windows
|
|
# line-endings fail for some reason, so we will inreplace instead.
|
|
# Fixes compile with clang failure due to entirely missing variable, how
|
|
# the fuck did GCC ever compile this?!
|
|
inreplace 'fplib/src/FloatingAverage.h',
|
|
'for ( int i = 0; i < size; ++i )',
|
|
'for ( int i = 0; i < m_values.size(); ++i )'
|
|
end
|
|
|
|
def install
|
|
inreplace_fix
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make install"
|
|
end
|
|
end
|