homebrew-core/Formula/soci.rb
Miguel Araújo d077a6ed9d soci: fix audit
soci:
  * `option` (line 17) should be put before `depends_on` (line 15)
  * http://soci.sourceforge.net/ should be `https://soci.sourceforge.io/`
2017-02-12 16:19:08 +00:00

45 lines
1.4 KiB
Ruby

class Soci < Formula
desc "Database access library for C++"
homepage "https://soci.sourceforge.io/"
url "https://download.sourceforge.net/project/soci/soci/soci-3.2.3/soci-3.2.3.zip"
sha256 "ab0f82873b0c5620e0e8eb2ff89abad6517571fd63bae4bdcac64dd767ac9a05"
bottle do
sha256 "61ac3ada591371a743198251fa35d70a18cc6018d23e4a36e3ec45aa6ec99db2" => :sierra
sha256 "4b8d8acc29c2ed8e826be84c9dc777d947033396336885440fb823530460b470" => :el_capitan
sha256 "b802ee253ceb25ebfd2b5a90ef4dc8b229a90c7b1cae1a33533c9bd2ff9e7d50" => :yosemite
end
option "with-oracle", "Enable Oracle support."
option "with-boost", "Enable boost support."
option "with-mysql", "Enable MySQL support."
option "with-odbc", "Enable ODBC support."
option "with-pg", "Enable PostgreSQL support."
depends_on "cmake" => :build
depends_on "boost" => [:build, :optional]
depends_on "sqlite" if MacOS.version <= :snow_leopard
def translate(a)
a == "pg" ? "postgresql" : a
end
fails_with :clang do
build 421
cause "Template oddities"
end
def install
args = std_cmake_args + %w[.. -DWITH_SQLITE3:BOOL=ON]
%w[boost mysql oracle odbc pg].each do |a|
bool = build.with?(a) ? "ON" : "OFF"
args << "-DWITH_#{translate(a).upcase}:BOOL=#{bool}"
end
mkdir "build" do
system "cmake", *args
system "make", "install"
end
end
end