homebrew-core/Formula/liblastfm.rb

24 lines
583 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Liblastfm < Formula
homepage 'https://github.com/mxcl/liblastfm/'
2011-03-15 17:41:58 +00:00
url 'https://github.com/mxcl/liblastfm/tarball/0.3.3'
md5 'fe339bf46aefc515c251200d10262f79'
depends_on 'qt'
depends_on 'fftw'
2010-02-24 15:10:06 +00:00
depends_on 'libsamplerate'
# See issue #12886. Reported in: https://github.com/mxcl/liblastfm/issues/14
fails_with :clang do
build 318
cause 'error: reference to non-static member function must be called'
end
def install
system "./configure", "--release", "--prefix", prefix
system "make"
system "make install"
end
2010-09-17 07:46:39 +00:00
end