aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libsndfile.rb
blob: 170e63b02c85537946b020c705c1b2aa5a3b5576 (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.21.tar.gz'
  md5 '880a40ec636ab2185b97f8927299b292'

  depends_on 'pkg-config' => :build

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