{"id":28561691,"url":"https://github.com/ultimaker/qt5","last_synced_at":"2026-02-21T19:03:43.025Z","repository":{"id":49542543,"uuid":"118914483","full_name":"Ultimaker/qt5","owner":"Ultimaker","description":"Fork of Qt's super repository adjusted for Ultimaker's firmware.","archived":false,"fork":false,"pushed_at":"2025-10-28T14:30:18.000Z","size":77976,"stargazers_count":2,"open_issues_count":3,"forks_count":1,"subscribers_count":30,"default_branch":"master/imx8","last_synced_at":"2025-10-28T15:11:52.742Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gfdl-1.3","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ultimaker.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.FDL","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-01-25T13:12:33.000Z","updated_at":"2025-09-19T13:18:55.000Z","dependencies_parsed_at":"2025-07-14T10:14:54.441Z","dependency_job_id":"1244468b-3b54-4fcc-a2ec-bae7476b20c5","html_url":"https://github.com/Ultimaker/qt5","commit_stats":null,"previous_names":[],"tags_count":84,"template":false,"template_full_name":null,"purl":"pkg:github/Ultimaker/qt5","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ultimaker%2Fqt5","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ultimaker%2Fqt5/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ultimaker%2Fqt5/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ultimaker%2Fqt5/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ultimaker","download_url":"https://codeload.github.com/Ultimaker/qt5/tar.gz/refs/heads/master/imx8","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ultimaker%2Fqt5/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29690657,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T18:18:25.093Z","status":"ssl_error","status_checked_at":"2026-02-21T18:18:22.435Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-10T11:15:29.668Z","updated_at":"2026-02-21T19:03:43.020Z","avatar_url":"https://github.com/Ultimaker.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"HOW TO BUILD QT5\n================\n\n\n Synopsis\n ========\n\n   System requirements\n   ------------------\n\n    - Perl 5.8 or later\n    - Python 2.7 or later\n    - C++ compiler supporting the C++11 standard\n\n     For other platform specific requirements,\n     please see section \"Setting up your machine\" on:\n     http://wiki.qt.io/Get_The_Source\n\n   Licensing:\n   ----------\n\n    Opensource users:\n\n        \u003clicense\u003e        = -opensource\n\n    Commercial users:\n\n        \u003clicense\u003e        = -commercial\n\n   Linux, Mac:\n   -----------\n\n     cd \u003cpath\u003e/\u003csource_package\u003e\n     ./configure -prefix $PWD/qtbase \u003clicense\u003e -nomake tests\n     make -j 4\n\n   Windows:\n   --------\n\n     Open a command prompt.\n     Ensure that the following tools can be found in the path:\n     * Supported compiler (Visual Studio 2012 or later,\n        MinGW-builds gcc 4.9 or later)\n     * Perl version 5.12 or later   [http://www.activestate.com/activeperl/]\n     * Python version 2.7 or later  [http://www.activestate.com/activepython/]\n     * Ruby version 1.9.3 or later  [http://rubyinstaller.org/]\n\n     cd \u003cpath\u003e\\\u003csource_package\u003e\n     configure -prefix %CD%\\qtbase \u003clicense\u003e -nomake tests\n     nmake // jom // mingw32-make\n\n     To accelerate the bootstrap of qmake with MSVC, it may be useful to pass\n     \"-make-tool jom\" on the configure command line. If you do not use jom,\n     adding \"/MP\" to the CL environment variable is a good idea.\n\n More details follow.\n\n Build!\n ======\n\n A typical `configure; make' build process is used.\n\n Some relevant configure options (see configure -help):\n\n -release              Compile and link Qt with debugging turned off.\n -debug                Compile and link Qt with debugging turned on.\n -nomake tests         Disable building of tests to speed up compilation\n -nomake examples      Disable building of examples to speed up compilation\n -confirm-license      Automatically acknowledge the LGPL 2.1 license.\n\n Example for a release build:\n (adjust the `-jN' parameter as appropriate for your system)\n\n   ./configure -prefix $PWD/qtbase \u003clicense\u003e\n   make -j4\n\n Example for a developer build:\n (enables more autotests, builds debug version of libraries, ...)\n\n   ./configure -developer-build \u003clicense\u003e\n   make -j4\n\n See output of `./configure -help' for documentation on various options to\n configure.\n\n The above examples will build whatever Qt5 modules have been enabled by\n default in the build system.\n\n It is possible to build selected modules with their dependencies by doing\n a `make module-\u003cfoo\u003e'.  For example, to build only qtdeclarative,\n and the modules it depends on:\n\n   ./configure -prefix $PWD/qtbase \u003clicense\u003e\n   make -j4 module-qtdeclarative\n\n This can save a lot of time if you are only interested in a subset of Qt5.\n\n\n Hints\n =====\n\n The submodule repository qtrepotools contains useful scripts for\n developers and release engineers. Consider adding qtrepotools/bin\n to your PATH environment variable to access them.\n\n The qt5_tool in qtrepotools has some more features which may be of interest.\n Try `qt5_tool --help'.\n\n\n Building Qt5 from git\n =====================\n See http://wiki.qt.io/Building_Qt_5_from_Git and README.git\n for more information.\n See http://wiki.qt.io/Qt_5 for the reference platforms.\n\n\n Documentation\n =============\n\n After configuring and compiling Qt, building the documentation is possible by running\n \"make docs\".\n\n After having built the documentation, you need to install it with the following\n command:\n\n    make install_docs\n\n The documentation is installed in the path set to $QT_INSTALL_DOCS.\n Running \"qmake -query\" will list the value of QT_INSTALL_DOCS.\n\n Information about Qt 5's documentation is located in qtbase/doc/README\n or in the following page: http://wiki.qt.io/Qt5DocumentationProject\n\n Note: Building the documentation is only tested on desktop platforms.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fultimaker%2Fqt5","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fultimaker%2Fqt5","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fultimaker%2Fqt5/lists"}