mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-08 21:00:05 +02:00
45 lines
1.1 KiB
Bash
45 lines
1.1 KiB
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-2025 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="8264a65de947a7e366bae708c238c621574d2242b34d4e256260e0895cce80ec"
|
|
|
|
ARCHITECTURES="?all !x86_gcc2"
|
|
SECONDARY_ARCHITECTURES="?x86"
|
|
|
|
DISABLE_SOURCE_PACKAGE="yes"
|
|
|
|
PROVIDES="
|
|
qt6_examples$secondaryArchSuffix = $portVersion compat >= 6
|
|
"
|
|
REQUIRES="
|
|
haiku$secondaryArchSuffix
|
|
qt6_tools$secondaryArchSuffix
|
|
"
|
|
|
|
BUILD_REQUIRES="
|
|
haiku${secondaryArchSuffix}_devel
|
|
"
|
|
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
|
|
}
|