53 lines
1.6 KiB
Ruby
53 lines
1.6 KiB
Ruby
class Treefrog < Formula
|
|
desc "High-speed C++ MVC Framework for Web Application"
|
|
homepage "http://www.treefrogframework.org/"
|
|
url "https://github.com/treefrogframework/treefrog-framework/archive/v1.15.0.tar.gz"
|
|
sha256 "e6602c011e26c088d8a7bccdc9cb2ff1b8ddfb75b673d96a816f3827b88f659c"
|
|
head "https://github.com/treefrogframework/treefrog-framework.git", :branch => "master"
|
|
|
|
bottle do
|
|
sha256 "0d560f2453a4329e8cd0e6683a6c7826f3315f77b88a442b6b74a17a65123cba" => :sierra
|
|
sha256 "0d560f2453a4329e8cd0e6683a6c7826f3315f77b88a442b6b74a17a65123cba" => :el_capitan
|
|
end
|
|
|
|
option "with-mysql", "enable --with-mysql option for Qt build"
|
|
option "with-postgresql", "enable --with-postgresql option for Qt build"
|
|
option "with-qt5", "build and link with QtGui module"
|
|
|
|
depends_on :macos => :el_capitan
|
|
depends_on :xcode => [:build, "8.0"]
|
|
|
|
qt5_build_options = []
|
|
qt5_build_options << "with-mysql" if build.with?("mysql")
|
|
qt5_build_options << "with-postgresql" if build.with?("postgresql")
|
|
depends_on "qt5" => qt5_build_options
|
|
|
|
def install
|
|
args = ["--prefix=#{prefix}"]
|
|
args << "--enable-gui-mod" if build.with? "qt5"
|
|
|
|
system "./configure", *args
|
|
|
|
cd "src" do
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
cd "tools" do
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
system bin/"tspawn", "new", "hello"
|
|
assert File.exist?("hello")
|
|
cd "hello" do
|
|
assert File.exist?("hello.pro")
|
|
system HOMEBREW_PREFIX/"opt/qt5/bin/qmake"
|
|
assert File.exist?("Makefile")
|
|
system "make"
|
|
system bin/"treefrog", "-v"
|
|
end
|
|
end
|
|
end
|