43 lines
1.3 KiB
Ruby
43 lines
1.3 KiB
Ruby
class Poco < Formula
|
|
desc "POCO C++ Libraries"
|
|
homepage "http://pocoproject.org/"
|
|
url "http://pocoproject.org/releases/poco-1.6.1/poco-1.6.1-all.tar.gz"
|
|
sha256 "88c88ff0916228d3a011b86c486033dab75e62a27429b5d35736d43527cf5b44"
|
|
|
|
head "https://github.com/pocoproject/poco.git", :branch => "develop"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "33df81188d98b0fcf1d15a6e13f84d3c4e2fcf5b1b96bb7c7f4f5e02366c93be" => :el_capitan
|
|
sha256 "c5230b22ed0d24df4b5bdf6ca23dd96af5e68e5afe380a457ede2e3bf9d9ba3a" => :yosemite
|
|
sha256 "bcf911a8a650595792d103e12364e3efc3b283d4fcc22caf7afaba5014786dd0" => :mavericks
|
|
end
|
|
|
|
option :cxx11
|
|
option :universal
|
|
|
|
depends_on "openssl"
|
|
depends_on "cmake" => :build
|
|
|
|
def install
|
|
ENV.cxx11 if build.cxx11?
|
|
|
|
args = std_cmake_args
|
|
args << "-DENABLE_DATA_MYSQL=OFF" << "-DENABLE_DATA_ODBC=OFF"
|
|
|
|
if build.universal?
|
|
ENV.universal_binary
|
|
args << "-DCMAKE_OSX_ARCHITECTURES=#{Hardware::CPU.universal_archs.as_cmake_arch_flags}"
|
|
end
|
|
|
|
if build.stable?
|
|
# Fix Foundation library version (already fixed upstream).
|
|
inreplace "Foundation/CMakeLists.txt", "VERSION ${PROJECT_VERSION}", "VERSION ${SHARED_LIBRARY_VERSION}"
|
|
end
|
|
|
|
mkdir "macbuild" do
|
|
system "cmake", buildpath, *args
|
|
system "make", "install"
|
|
end
|
|
end
|
|
end
|