7959b25569
Closes Homebrew/homebrew#26321.
32 lines
751 B
Ruby
32 lines
751 B
Ruby
require 'formula'
|
|
|
|
class Sdcv < Formula
|
|
homepage 'http://sdcv.sourceforge.net/'
|
|
url 'https://svn.code.sf.net/p/sdcv/code/trunk',
|
|
:using => UnsafeSubversionDownloadStrategy, :revision => '76'
|
|
version '0.5-2013-09-10'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'cmake' => :build
|
|
depends_on 'gettext'
|
|
depends_on 'glib'
|
|
depends_on 'readline'
|
|
|
|
# see: https://github.com/Homebrew/homebrew/issues/26321
|
|
fails_with :clang do
|
|
build 425
|
|
cause "clang 425 does not provide complete enough C++11 features"
|
|
end
|
|
|
|
fails_with :gcc
|
|
fails_with :llvm
|
|
fails_with :gcc_4_0
|
|
|
|
def install
|
|
mkdir 'build' do
|
|
system "cmake", "..", *std_cmake_args
|
|
system "make", "lang"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
end
|