homebrew-core/Formula/teapot.rb
nibbles 2bits 31668ae139 teapot 2.3.0
- Upgrade to 2.3.0
- Switch to cmake because it's the only build system now.
- Add a dep on cmake.
- Add `-DENABLE_HELP=OFF` so it doesn't require latex.
- It still installs some man pages.
- It has an fltk option that doesn't work due to HB fltk issues.
- Works with superenv on ML with XCode-4.5.1

Closes Homebrew/homebrew#15720.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-28 12:33:30 -07:00

17 lines
413 B
Ruby

require 'formula'
class Teapot < Formula
homepage 'http://www.syntax-k.de/projekte/teapot/'
url 'http://www.syntax-k.de/projekte/teapot/teapot-2.3.0.tar.gz'
sha1 'cac70c7967ba72166cdbd1806b674cd8299399e7'
depends_on 'cmake' => :build
def install
args = std_cmake_args + ['-DENABLE_HELP=OFF', '..']
mkdir 'macbuild' do
system 'cmake', *args
system 'make install'
end
end
end