homebrew-core/Formula/lastfmfpclient.rb
Jack Nagel c7630f5ff4 Use new std_cmake_args method
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-22 22:22:00 -05:00

19 lines
451 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 install
system "cmake", ".", *std_cmake_args
system "make install"
end
end