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

class Uade < Formula
  url 'http://zakalwe.fi/uade/uade2/uade-2.13.tar.bz2'
  homepage 'http://zakalwe.fi/uade/'
  sha1 '61c5ce9dfecc37addf233de06be196c9b15a91d8'

  depends_on 'pkg-config' => :build
  depends_on 'libao'

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