homebrew-core/Formula/lastfm_fplib.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

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