homebrew-core/Formula/libphonenumber.rb
2019-07-16 14:33:27 +02:00

61 lines
2 KiB
Ruby

class Libphonenumber < Formula
desc "C++ Phone Number library by Google"
homepage "https://github.com/google/libphonenumber"
url "https://github.com/google/libphonenumber/archive/v8.10.15.tar.gz"
sha256 "8f73ce45f4075935b46532ba64cab64dfcb73c8e4a411cba4885de4e0e46593f"
bottle do
cellar :any
sha256 "534c8b9d5f6b3353ba51dd43e954f4cc2d460ee853acaebac6030a29e97f1a67" => :mojave
sha256 "7f5e1a8fee321b283a560a03348e722d2c0adbb9f1fb8465421e775ada0e1485" => :high_sierra
sha256 "492504593f7a08a4ccd0b9122e8e8da017e1b34ee9e118b01cf85b65b63edecf" => :sierra
end
depends_on "cmake" => :build
depends_on "boost"
depends_on "icu4c"
depends_on :java => "1.7+"
depends_on "protobuf"
depends_on "re2"
resource "gtest" do
url "https://github.com/google/googletest/archive/release-1.8.1.tar.gz"
sha256 "9bf1fe5182a604b4135edc1a425ae356c9ad15e9b23f9f12a02e80184c3a249c"
end
def install
ENV.cxx11
(buildpath/"gtest").install resource("gtest")
system "cmake", "cpp", "-DGTEST_SOURCE_DIR=gtest/googletest",
"-DGTEST_INCLUDE_DIR=gtest/googletest/include",
*std_cmake_args
system "make", "install"
end
test do
(testpath/"test.cpp").write <<~EOS
#include <phonenumbers/phonenumberutil.h>
#include <phonenumbers/phonenumber.pb.h>
#include <iostream>
#include <string>
using namespace i18n::phonenumbers;
int main() {
PhoneNumberUtil *phone_util_ = PhoneNumberUtil::GetInstance();
PhoneNumber test_number;
string formatted_number;
test_number.set_country_code(1);
test_number.set_national_number(6502530000ULL);
phone_util_->Format(test_number, PhoneNumberUtil::E164, &formatted_number);
if (formatted_number == "+16502530000") {
return 0;
} else {
return 1;
}
}
EOS
system ENV.cxx, "-std=c++11", "test.cpp", "-L#{lib}", "-lphonenumber", "-o", "test"
system "./test"
end
end