a5e2a751d8
Closes Homebrew/homebrew#33438. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
47 lines
1.3 KiB
Ruby
47 lines
1.3 KiB
Ruby
require 'formula'
|
|
|
|
class Libcapn < Formula
|
|
homepage 'http://libcapn.org/'
|
|
url "http://libcapn.org/download/libcapn-1.0.0-src.tar.gz"
|
|
sha1 "740dc87395fc7255b78c3c926a044f00692e8c41"
|
|
head 'https://github.com/adobkin/libcapn.git'
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "7e72854c13412bf987b6c8a81908de2667939cd9" => :yosemite
|
|
sha1 "7108c97b5710b7a5c90b30051f9a55c6399dd48f" => :mavericks
|
|
sha1 "0ec5a47c3fb17267eb8d714746195ab9205f057f" => :mountain_lion
|
|
end
|
|
|
|
depends_on 'cmake' => :build
|
|
depends_on 'pkg-config' => :build
|
|
depends_on "openssl"
|
|
|
|
def install
|
|
cmake_args = std_cmake_args
|
|
cmake_args << "-DOPENSSL_ROOT_DIR=#{Formula["openssl"].opt_prefix}"
|
|
system "cmake", ".", *cmake_args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/'test_install.c').write <<-TEST_SCRIPT.undent
|
|
#include <apn.h>
|
|
int main() {
|
|
apn_ctx_ref ctx = NULL;
|
|
apn_error_ref error;
|
|
if (apn_init(&ctx, "apns-dev-cert.pem", "apns-dev-key.pem", NULL, &error) == APN_ERROR) {
|
|
apn_error_free(&error);
|
|
return 1;
|
|
}
|
|
apn_close(ctx);
|
|
apn_free(&ctx);
|
|
return 0;
|
|
}
|
|
TEST_SCRIPT
|
|
|
|
flags = ["-I#{include}/capn", "-L#{lib}/capn", "-lcapn"] + ENV.cflags.to_s.split
|
|
system ENV.cc, "-o", "test_install", "test_install.c", *flags
|
|
system "./test_install"
|
|
end
|
|
end
|