aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/uade.rb
blob: 89f13431a5cb46a7adf125da865282c973c8fb6e (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/'
  md5 '29bb1018b7fa58f93b246264c160bdc6'

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

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