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

class Libsndfile <Formula
  homepage 'http://www.mega-nerd.com/libsndfile/'
  url 'http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.23.tar.gz'
  md5 'd0e22b5ff2ef945615db33960376d733'

  depends_on 'pkg-config' => :build

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