f185c00ddc
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.
16 lines
339 B
Ruby
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
|