aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lasi.rb
blob: 54c25d3f29850593b501d10e3241fa3de715a99e (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