aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libsamplerate.rb
blob: 33f13f3e73555d606cf06784c99f4dd5b3ecd085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

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'

  aka 'Secret Rabbit Code'

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