blob: 6f95f981f80a05b754527f8e2c20cd4c9754a2cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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
|