mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-29 11:38:52 +02:00
37 lines
961 B
Bash
37 lines
961 B
Bash
SUMMARY="A cross-platform application and UI framework (Examples)"
|
|
DESCRIPTION="Qt is a cross-platform application framework that is widely \
|
|
used for developing software with a graphical user interface, and also used \
|
|
for developing non-GUI programs such as command-line tools and consoles for \
|
|
servers."
|
|
HOMEPAGE="https://qt.io/"
|
|
COPYRIGHT="2015-2026 The Qt Company Ltd."
|
|
LICENSE="GNU LGPL v2.1
|
|
GNU LGPL v3
|
|
GNU FDL v1"
|
|
REVISION="1"
|
|
SOURCE_URI="https://archlinux.thaller.ws/extra/os/x86_64/qt6-examples-${portVersion}-1-any.pkg.tar.zst#noarchive"
|
|
CHECKSUM_SHA256="8f3266df0523e7ef31e51550f8fd2d334de6d4246e675cab63c8edb4124fc522"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
DISABLE_SOURCE_PACKAGE="yes"
|
|
|
|
PROVIDES="
|
|
qt6_examples = $portVersion compat >= 6
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:tar
|
|
cmd:unzstd
|
|
"
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $developDir/sources/Qt6
|
|
|
|
tar -C $developDir/sources/Qt6 \
|
|
-I zstd \
|
|
--strip-components 5 \
|
|
-xvf qt6-examples-${portVersion}-1-any.pkg.tar.zst
|
|
}
|