homebrew-core/Formula/lasi.rb

23 lines
643 B
Ruby
Raw Normal View History

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/'
url 'http://sourceforge.net/projects/lasi/files/lasi/1.1.1%20Source/libLASi-1.1.1.tar.gz'
sha1 'd17fdebf4bb4a29512e321c7af157a694dc855a0'
2012-02-22 05:12:27 +00:00
head 'https://lasi.svn.sourceforge.net/svnroot/lasi/trunk'
depends_on 'cmake' => :build
depends_on 'pkg-config' => :build
depends_on 'pango'
depends_on 'doxygen'
def install
2012-08-19 21:37:02 +00:00
# None is valid, but lasi's CMakeFiles doesn't think so for some reason
args = std_cmake_args - %w{-DCMAKE_BUILD_TYPE=None}
system "cmake", ".", "-DCMAKE_BUILD_TYPE=Release", *args
system "make install"
end
end