aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBas Kok2012-08-07 20:00:31 +0200
committerAdam Vandenberg2012-10-02 11:25:19 -0700
commitf92023cbdaad1d34932dad6ea87e7277e7b7e051 (patch)
treed004cd564f06cc4f9c1d051ca8625a8969b90333 /Library/Formula
parent0f4628976d4ad23ed516e832c8e40d431c8739da (diff)
downloadhomebrew-f92023cbdaad1d34932dad6ea87e7277e7b7e051.tar.bz2
xstow 1.0.0
Closes #14030. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/xstow.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/Library/Formula/xstow.rb b/Library/Formula/xstow.rb
new file mode 100644
index 000000000..76f9d07e7
--- /dev/null
+++ b/Library/Formula/xstow.rb
@@ -0,0 +1,25 @@
+require 'formula'
+
+class Xstow < Formula
+ homepage 'http://xstow.sourceforge.net/'
+ url 'http://downloads.sourceforge.net/project/xstow/xstow-1.0.0.tar.bz2'
+ sha1 'e4e68fbf05150067d82ce526cb784c5c91107ec9'
+
+ fails_with :clang do
+ build 421
+ cause <<-EOS.undent
+ clang does not support unqualified lookups in c++ templates, see:
+ http://clang.llvm.org/compatibility.html#dep_lookup
+ EOS
+ end
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--disable-static", "--prefix=#{prefix}"
+ system "make install"
+ end
+
+ def test
+ system "#{bin}/xstow", "-Version"
+ end
+end