homebrew-core/Formula/treefrog.rb
2016-12-05 16:00:07 +01:00

55 lines
1.7 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.14.0.tar.gz"
sha256 "d3208baed1aabea4ac47a54d74dc6c3536b7138c6b9c12613219421df5b6c7f5"
head "https://github.com/treefrogframework/treefrog-framework.git", :branch => "master"
bottle do
sha256 "b507eb26410abc89061e1f2e0210f74ebe9825887e39306ccb433c4b8388fe55" => :sierra
sha256 "b507eb26410abc89061e1f2e0210f74ebe9825887e39306ccb433c4b8388fe55" => :el_capitan
end
option "with-mysql", "enable --with-mysql option for Qt build"
option "with-oci", "enable --with-oci 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-oci" if build.with?("oci") && ENV["ORACLE_HOME"]
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