homebrew-core/Formula/liblastfm.rb
2010-11-14 03:54:45 +00:00

17 lines
382 B
Ruby

require 'formula'
class Liblastfm <Formula
homepage 'http://github.com/mxcl/liblastfm/'
url 'http://github.com/mxcl/liblastfm/tarball/0.3.3'
md5 'fe339bf46aefc515c251200d10262f79'
depends_on 'qt'
depends_on 'fftw'
depends_on 'libsamplerate'
def install
system "./configure", "--release", "--prefix", prefix
system "make"
system "make install"
end
end