blob: 8e2137d45e04dd830e09aadbe5b1f729d1e038ec (
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 'https://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
|