aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAlan Oliver2011-08-03 13:27:46 +0100
committerAdam Vandenberg2011-08-13 11:33:34 -0700
commita5f3227e8bd469bcbe7b93a98d794fdf66758b75 (patch)
treec305edb660f95d639c61bb2fe0eae4b5a818c323 /Library/Formula
parent8e66ee9a97d7962679c975f95457a027f1222fc2 (diff)
downloadhomebrew-a5f3227e8bd469bcbe7b93a98d794fdf66758b75.tar.bz2
XQilla 2.2.4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/xqilla.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/xqilla.rb b/Library/Formula/xqilla.rb
new file mode 100644
index 000000000..041576d52
--- /dev/null
+++ b/Library/Formula/xqilla.rb
@@ -0,0 +1,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