aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lasi.rb
blob: caee0aeaa8f5dc5baf295ec92db5afc8f23cd8d0 (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'
  depends_on 'pkg-config'
  depends_on 'pango'
  depends_on 'doxygen'

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