diff options
| author | Bas Kok | 2012-08-07 20:00:31 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2012-10-02 11:25:19 -0700 |
| commit | f92023cbdaad1d34932dad6ea87e7277e7b7e051 (patch) | |
| tree | d004cd564f06cc4f9c1d051ca8625a8969b90333 /Library/Formula | |
| parent | 0f4628976d4ad23ed516e832c8e40d431c8739da (diff) | |
| download | homebrew-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.rb | 25 |
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 |
