2011-08-03 12:27:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Xqilla < Formula
|
|
|
|
homepage 'http://xqilla.sourceforge.net/'
|
2012-07-25 23:36:40 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/xqilla/xqilla/2.3.0/XQilla-2.3.0.tar.gz'
|
|
|
|
sha1 'facfd0134652cef7ebbc3c54d61fc248c1610c95'
|
2011-08-03 12:27:46 +00:00
|
|
|
|
|
|
|
depends_on 'xerces-c'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
2012-08-08 15:49:01 +00:00
|
|
|
"--with-xerces=#{HOMEBREW_PREFIX}",
|
2011-08-03 12:27:46 +00:00
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|