-
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Dennis Bonke <[email protected]>
- Loading branch information
1 parent
dbf6ba4
commit 3264bd5
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -400,6 +400,46 @@ packages: | |
environ: | ||
DESTDIR: '@THIS_COLLECT_DIR@' | ||
|
||
- name: qtwebchannel6 | ||
architecture: '@OPTION:arch@' | ||
metadata: | ||
summary: The Qt6 webchannel library | ||
description: This package provides the Qt6 webview library, containing support for integrating C++ and QML applications with HTML/JavaScript clients. | ||
spdx: 'GPL-2.0-only GPL-3.0-only LGPL-3.0-only GFDL-1.3-only' | ||
website: 'https://code.qt.io/cgit/qt/qtwebchannel.git/' | ||
maintainer: "Dennis Bonke <[email protected]>" | ||
categories: ['dev-qt'] | ||
source: | ||
subdir: 'ports' | ||
git: 'http://code.qt.io/qt/qtwebchannel.git' | ||
tag: 'v6.3.0' | ||
version: '6.3.0' | ||
tools_required: | ||
- system-gcc | ||
- host-cmake | ||
- host-qt6 | ||
pkgs_required: | ||
- mlibc | ||
- qtbase6 | ||
- qtdeclarative6 | ||
- qtwebsockets6 | ||
- libxkbcommon | ||
- mesa | ||
configure: | ||
- args: | ||
- 'cmake' | ||
- '-GNinja' | ||
- '-DQT_HOST_PATH=@BUILD_ROOT@/tools/host-qt6' | ||
- '-DCMAKE_INSTALL_PREFIX=/usr' | ||
- '-DCMAKE_TOOLCHAIN_FILE=@SOURCE_ROOT@/scripts/CMakeToolchain-@OPTION:[email protected]' | ||
- '-DCMAKE_BUILD_TYPE=Debug' | ||
- '@THIS_SOURCE_DIR@' | ||
build: | ||
- args: ['ninja'] | ||
- args: ['ninja', 'install'] | ||
environ: | ||
DESTDIR: '@THIS_COLLECT_DIR@' | ||
|
||
- name: qtwebsockets6 | ||
architecture: '@OPTION:arch@' | ||
metadata: | ||
|