xstow 1.0.0

Closes Homebrew/homebrew#14030.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Bas Kok 2012-08-07 20:00:31 +02:00 committed by Adam Vandenberg
parent b6c2b7cc31
commit 5456319034
1 changed files with 25 additions and 0 deletions

25
Formula/xstow.rb Normal file
View File

@ -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