homebrew-core/Formula/lasi.rb
David Höppner f185c00ddc New formula lasi
libLASi is a library written by Larry Siden that provides a
C++ stream output interface ( with operator << ) for creating
Postscript documents that can contain characters from any of
the scripts and symbol blocks supported in Unicode and by
Owen Taylor's Pango layout engine.
2010-03-09 18:09:52 +01:00

16 lines
339 B
Ruby

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