58 lines
2.1 KiB
Ruby
58 lines
2.1 KiB
Ruby
class Qjson < Formula
|
|
desc "Map JSON to QVariant objects"
|
|
homepage "https://qjson.sourceforge.io"
|
|
url "https://github.com/flavio/qjson/archive/0.9.0.tar.gz"
|
|
sha256 "e812617477f3c2bb990561767a4cd8b1d3803a52018d4878da302529552610d4"
|
|
license "LGPL-2.1"
|
|
revision 2
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 cellar: :any, arm64_ventura: "7b927cd12810ef0c8bca41a65c906af9021ef100fcfd1a4686e81607c213fc7e"
|
|
sha256 cellar: :any, arm64_monterey: "f9bf3676c0e2b53c3820eb8b9fc6b8a3b3222c86836a925531c4a1ec902bb346"
|
|
sha256 cellar: :any, arm64_big_sur: "073b41a1515c6da30255c50957567eed6f70243aa6845c919fc4d525516fed61"
|
|
sha256 cellar: :any, ventura: "c644e9cc4192087e8cb03fd0c420a8a164354f33453ed4dc15ecde05e475b8c4"
|
|
sha256 cellar: :any, monterey: "49c80dc061c008fb20ebc722596d17845973ee735236be19b8b26cb5293cd043"
|
|
sha256 cellar: :any, big_sur: "282f4fa0cccf91b2f993e6742c295e57016a5a25dc89acd1d5c0f19fdf661734"
|
|
sha256 cellar: :any, catalina: "23138020da1a1d5fc965e242d40ee73838cd233498c1f6aa06fa0146aa895b94"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "b64e82e4791c3dc66f6304add6ac44a993b82a9d88d02704af280daa080f5d64"
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "qt@5"
|
|
|
|
fails_with gcc: "5"
|
|
|
|
def install
|
|
system "cmake", ".", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <qjson-qt5/parser.h>
|
|
int main() {
|
|
QJson::Parser parser;
|
|
return 0;
|
|
}
|
|
EOS
|
|
flags = ["-I#{Formula["qt@5"].opt_include}"]
|
|
flags += if OS.mac?
|
|
[
|
|
"-F#{Formula["qt@5"].opt_lib}",
|
|
"-framework", "QtCore"
|
|
]
|
|
else
|
|
[
|
|
"-fPIC",
|
|
"-L#{Formula["qt@5"].opt_lib}", "-lQt5Core",
|
|
"-Wl,-rpath,#{Formula["qt@5"].opt_lib}",
|
|
"-Wl,-rpath,#{lib}"
|
|
]
|
|
end
|
|
system ENV.cxx, "test.cpp", "-o", "test", "-std=c++11", "-I#{include}",
|
|
"-L#{lib}", "-lqjson-qt5", *flags
|
|
system "./test"
|
|
end
|
|
end
|