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

class Wavpack < Formula
  url 'http://www.wavpack.com/wavpack-4.60.1.tar.bz2'
  homepage 'http://www.wavpack.com/'
  sha1 '003c65cb4e29c55011cf8e7b10d69120df5e7f30'

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