aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lastfmfpclient.rb
blob: 039f1e122f94ad420459aeaf18fba59a331148a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class Lastfmfpclient <Formula
  url 'http://github.com/lastfm/Fingerprinter/tarball/9ee83a51ac9058ff53c9'
  version '1.6'
  homepage 'http://github.com/lastfm/Fingerprinter'
  md5 'ab909b4d6dcc6182afae616749ce0fdc'

  depends_on 'cmake' => :build
  depends_on 'taglib'
  depends_on 'fftw'
  depends_on 'mad'
  depends_on 'libsamplerate'

  def install
    system "cmake . #{std_cmake_parameters}"
    system "make install"
  end
end