aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/liblastfm.rb
blob: cef839110d12642813e6420bcbbd5ceead82410e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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