aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lasi.rb
blob: ca6ffc2c31a3c8811cc646e2cb301b8c4f4434c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Lasi <Formula
  head 'https://lasi.svn.sourceforge.net/svnroot/lasi/trunk'
  homepage 'http://www.unifont.org/lasi/'

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

  def install
    system "cmake . -DCMAKE_INSTALL_PREFIX=#{prefix}"
    system "make install"
  end
end