2010-03-09 16:36:56 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Lasi < Formula
|
2012-02-22 05:12:27 +00:00
|
|
|
homepage 'http://www.unifont.org/lasi/'
|
2012-02-01 02:57:06 +00:00
|
|
|
url 'http://sourceforge.net/projects/lasi/files/lasi/1.1.1%20Source/libLASi-1.1.1.tar.gz'
|
|
|
|
md5 'bc5161b1d820db3dbcea24ce1c2ed5ec'
|
2012-02-22 05:12:27 +00:00
|
|
|
|
2012-02-01 02:57:06 +00:00
|
|
|
head 'https://lasi.svn.sourceforge.net/svnroot/lasi/trunk'
|
2010-03-09 16:36:56 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'cmake' => :build
|
|
|
|
depends_on 'pkg-config' => :build
|
2010-03-09 16:36:56 +00:00
|
|
|
depends_on 'pango'
|
|
|
|
depends_on 'doxygen'
|
|
|
|
|
|
|
|
def install
|
2012-02-22 05:12:27 +00:00
|
|
|
system "cmake -DCMAKE_INSTALL_PREFIX=#{prefix} ."
|
2010-03-09 16:36:56 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|