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

class Xqilla < Formula
  url 'http://downloads.sourceforge.net/project/xqilla/xqilla/2.2.4/XQilla-2.2.4.tar.gz'
  homepage 'http://xqilla.sourceforge.net/'
  md5 'a00672133d06772f54f18d0fda304c02'

  depends_on 'xerces-c'

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