aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sdcv.rb
blob: b410f76d77fce68a2867a49c6d39ee10ee74aa74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'formula'

class Sdcv < Formula
  homepage 'http://sdcv.sourceforge.net/'
  url 'http://svn.code.sf.net/p/sdcv/code/trunk', :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
  needs :cxx11

  def install
    mkdir 'build' do
      system "cmake", "..", *std_cmake_args
      system "make", "lang"
      system "make", "install"
    end
  end
end