homebrew-core/Formula/liblastfm.rb

19 lines
449 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/'
url 'https://github.com/mxcl/liblastfm/tarball/e380c7f03f4b2417db87372df733606f4a153c53'
version '0.3.3.1'
sha1 'c68691b63a383f2a53a5894b99f165ffed4ea0db'
depends_on 'qt'
depends_on 'fftw'
2010-02-24 15:10:06 +00:00
depends_on 'libsamplerate'
def install
system "./configure", "--release", "--prefix", prefix
system "make"
system "make install"
end
2010-09-17 07:46:39 +00:00
end