aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDavid Höppner2010-03-09 17:36:56 +0100
committerDavid Höppner2010-03-09 18:09:52 +0100
commite9558929e4d09774ac44b223f1d4f9e7f893da03 (patch)
tree58a7c28967d1310fdeb95fbc11ed1a31caee25ba /Library/Formula
parent9c763aeb44ccbe35f395612e3f6f59c66127caf7 (diff)
downloadhomebrew-e9558929e4d09774ac44b223f1d4f9e7f893da03.tar.bz2
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.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/lasi.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/lasi.rb b/Library/Formula/lasi.rb
new file mode 100644
index 000000000..caee0aeaa
--- /dev/null
+++ b/Library/Formula/lasi.rb
@@ -0,0 +1,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