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

class Lasi < Formula
  homepage 'http://www.unifont.org/lasi/'
  url 'http://sourceforge.net/projects/lasi/files/lasi/1.1.1%20Source/libLASi-1.1.1.tar.gz'
  sha1 'd17fdebf4bb4a29512e321c7af157a694dc855a0'

  head 'https://lasi.svn.sourceforge.net/svnroot/lasi/trunk'

  depends_on 'cmake' => :build
  depends_on 'pkg-config' => :build
  depends_on 'pango'
  depends_on 'doxygen'

  def install
    # None is valid, but lasi's CMakeFiles doesn't think so for some reason
    args = std_cmake_args - %w{-DCMAKE_BUILD_TYPE=None}

    system "cmake", ".", "-DCMAKE_BUILD_TYPE=Release", *args
    system "make install"
  end
end