homebrew-core/Formula/liblastfm.rb
2011-03-12 11:55:09 -08:00

17 lines
387 B
Ruby

require 'formula'
class Liblastfm < Formula
homepage 'https://github.com/mxcl/liblastfm/'
url 'http://static.last.fm/src/liblastfm-0.3.0.tar.bz2'
md5 '3f73222ebc31635941832b01e7a494b6'
depends_on 'qt'
depends_on 'fftw'
depends_on 'libsamplerate'
def install
system "./configure", "--release", "--prefix", prefix
system "make"
system "make install"
end
end