aboutsummaryrefslogtreecommitdiffstats
path: root/Formula/libsamplerate.rb
blob: d6dedc6c7518ad2912b128f5dfb9918845dc67d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'brewkit'

class Libsamplerate <Formula
  @homepage='http://www.mega-nerd.com/SRC'
  @url='http://www.mega-nerd.com/SRC/libsamplerate-0.1.7.tar.gz'
  @md5='ad093e60ec44f0a60de8e29983ddbc0f'

  def install
    system "./configure --disable-debug --prefix='#{prefix}'"
    system "make install"
  end
end