96 lines
2.8 KiB
Ruby
96 lines
2.8 KiB
Ruby
class QtMysql < Formula
|
|
desc "Qt SQL Database Driver"
|
|
homepage "https://www.qt.io/"
|
|
url "https://download.qt.io/official_releases/qt/6.2/6.2.2/submodules/qtbase-everywhere-src-6.2.2.tar.xz"
|
|
sha256 "85ab9180180c2eaf84cd11ae4c6d5a6a69f2f8fd7260aaccfd91a3e7e7232c1a"
|
|
license all_of: ["LGPL-2.1-only", "LGPL-3.0-only"]
|
|
|
|
livecheck do
|
|
formula "qt"
|
|
end
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_monterey: "243662c3a16eeb8968102637eef10bec84a147fb11312f0c4276bfad2befe756"
|
|
sha256 cellar: :any, arm64_big_sur: "ba54bfa3ad774e865d9d51a6dc4cb7f8bed47a33360ecf44f50d25aa720e4a86"
|
|
sha256 cellar: :any, monterey: "3acef8c6ea5d657312d51efa42c7bf6d8578c85436c5fb6672256fbfc19bcdb1"
|
|
sha256 cellar: :any, big_sur: "d0afb2438856cb0bbf09c2513907e56f0c1af75d9ecfcefc378dd05ecbcdba9c"
|
|
sha256 cellar: :any, catalina: "8f3694cdb90e3078438c018a3c392d83a7cc46da32ff1d001412a6b346af112f"
|
|
end
|
|
|
|
depends_on "cmake" => [:build, :test]
|
|
|
|
depends_on "mysql"
|
|
depends_on "qt"
|
|
|
|
conflicts_with "qt-mariadb", "qt-percona-server",
|
|
because: "qt-mysql, qt-mariadb, and qt-percona-server install the same binaries"
|
|
|
|
def install
|
|
args = std_cmake_args + %W[
|
|
-DCMAKE_STAGING_PREFIX=#{prefix}
|
|
|
|
-DFEATURE_sql_ibase=OFF
|
|
-DFEATURE_sql_mysql=ON
|
|
-DFEATURE_sql_oci=OFF
|
|
-DFEATURE_sql_odbc=OFF
|
|
-DFEATURE_sql_psql=OFF
|
|
-DFEATURE_sql_sqlite=OFF
|
|
]
|
|
|
|
cd "src/plugins/sqldrivers" do
|
|
system "cmake", ".", *args
|
|
system "cmake", "--build", "."
|
|
system "cmake", "--install", "."
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"CMakeLists.txt").write <<~EOS
|
|
cmake_minimum_required(VERSION #{Formula["cmake"].version})
|
|
project(test VERSION 1.0.0 LANGUAGES CXX)
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_AUTORCC ON)
|
|
set(CMAKE_AUTOUIC ON)
|
|
find_package(Qt6 COMPONENTS Core Sql REQUIRED)
|
|
add_executable(test
|
|
main.cpp
|
|
)
|
|
target_link_libraries(test PRIVATE Qt6::Core Qt6::Sql)
|
|
EOS
|
|
|
|
(testpath/"test.pro").write <<~EOS
|
|
QT += core sql
|
|
QT -= gui
|
|
TARGET = test
|
|
CONFIG += console debug
|
|
CONFIG -= app_bundle
|
|
TEMPLATE = app
|
|
SOURCES += main.cpp
|
|
EOS
|
|
|
|
(testpath/"main.cpp").write <<~EOS
|
|
#include <QCoreApplication>
|
|
#include <QtSql>
|
|
#include <cassert>
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication a(argc, argv);
|
|
QSqlDatabase db = QSqlDatabase::addDatabase("QMYSQL");
|
|
assert(db.isValid());
|
|
return 0;
|
|
}
|
|
EOS
|
|
|
|
system "cmake", "-S", ".", "-B", "build", "-DCMAKE_BUILD_TYPE=Debug"
|
|
system "cmake", "--build", "build"
|
|
system "./build/test"
|
|
|
|
ENV.delete "CPATH"
|
|
system "qmake"
|
|
system "make"
|
|
system "./test"
|
|
end
|
|
end
|