homebrew-core/Formula/liblastfm.rb

17 lines
362 B
Ruby
Raw Normal View History

require 'brewkit'
class Liblastfm <Formula
@homepage='http://github.com/mxcl/liblastfm/'
@url='http://static.last.fm/src/liblastfm-0.3.0.tar.bz2'
@md5='3f73222ebc31635941832b01e7a494b6'
def deps
%w[qt fftw samplerate]
end
def install
system "./configure --release --prefix '#{prefix}'"
system "make"
system "make install"
end
end