40 lines
1.4 KiB
Ruby
40 lines
1.4 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"
|
|
revision 1
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "909c5b1e45b05d7bba5c67e116c8b9c1a734f6df155e7792e8fe0fd7a2fd4c84" => :catalina
|
|
sha256 "02abebab98b79dd60197c0e2d5f7a468e96cb738e5c2065a3664db0bf59cf59e" => :mojave
|
|
sha256 "1bd2a1a0fcabf72acedd8a7c9d68bae090d31cc6a673515461ce487f15b88772" => :high_sierra
|
|
sha256 "bd50e784f99285df8e70448f041c67fe1f8c79f5d6b17f130a2e3a11bc19227d" => :sierra
|
|
sha256 "befe6eeb2426c2f698dd54999398fa569d91246d239aef3e877680902a20f945" => :el_capitan
|
|
sha256 "f17d608977669101c13d3f57136d8d8121a0f87e26a0d7a55ee5a21659294355" => :yosemite
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "qt"
|
|
|
|
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
|
|
system ENV.cxx, "test.cpp", "-o", "test", "-std=c++11", "-I#{include}",
|
|
"-L#{lib}", "-lqjson-qt5",
|
|
"-I#{Formula["qt"].opt_include}",
|
|
"-F#{Formula["qt"].opt_lib}", "-framework", "QtCore"
|
|
system "./test"
|
|
end
|
|
end
|