55 lines
1.7 KiB
Ruby
55 lines
1.7 KiB
Ruby
class Soci < Formula
|
|
desc "Database access library for C++"
|
|
homepage "https://soci.sourceforge.io/"
|
|
url "https://downloads.sourceforge.net/project/soci/soci/soci-4.0.1/soci-4.0.1.zip"
|
|
sha256 "ec25f69df0237882bb9035c69e21d91e62f0c6a2cd6f9f0153bbf00b435ff6b2"
|
|
license "BSL-1.0"
|
|
|
|
bottle do
|
|
sha256 arm64_big_sur: "3dd152a973084669c4083615a101837067aae6c9b6f703e8148acb62314c6e11"
|
|
sha256 big_sur: "1110442edee6672ede9b93dccef0a933508d6aa9936ad7d7c82b9429965092ff"
|
|
sha256 catalina: "367f4d37091b11f2e63e220361f9344622a93f8c961122901889c5ef132fb0ec"
|
|
sha256 mojave: "c51aea80672de81e7663b36e6ff39ce9cc3025aa3c531539424dd089c1b347a8"
|
|
sha256 high_sierra: "6e6fced1aa11defaed5f6ea4461b5bbf763b8f55349035e587c80c4bbd68df27"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "sqlite"
|
|
|
|
def install
|
|
args = std_cmake_args + %w[
|
|
-DSOCI_TESTS:BOOL=OFF
|
|
-DWITH_SQLITE3:BOOL=ON
|
|
-DWITH_BOOST:BOOL=OFF
|
|
-DWITH_MYSQL:BOOL=OFF
|
|
-DWITH_ODBC:BOOL=OFF
|
|
-DWITH_ORACLE:BOOL=OFF
|
|
-DWITH_POSTGRESQL:BOOL=OFF
|
|
]
|
|
|
|
mkdir "build" do
|
|
system "cmake", "..", *args
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cxx").write <<~EOS
|
|
#include "soci/soci.h"
|
|
#include "soci/empty/soci-empty.h"
|
|
#include <string>
|
|
|
|
using namespace soci;
|
|
std::string connectString = "";
|
|
backend_factory const &backEnd = *soci::factory_empty();
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
soci::session sql(backEnd, connectString);
|
|
}
|
|
EOS
|
|
system ENV.cxx, "-o", "test", "test.cxx", "-std=c++11", "-L#{lib}", "-lsoci_core", "-lsoci_empty"
|
|
system "./test"
|
|
end
|
|
end
|