mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-29 11:38:52 +02:00
38 lines
1017 B
Bash
38 lines
1017 B
Bash
SUMMARY="A cross-platform application and UI framework (Documentation)"
|
|
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-doc-${portVersion}-1-any.pkg.tar.zst#noarchive"
|
|
CHECKSUM_SHA256="44cc83554de308b391a748f14bba699e4d9ff53c767c4b754f066ee5001569bb"
|
|
SOURCE_DIR="qt6-doc-$portVersion"
|
|
|
|
ARCHITECTURES="any"
|
|
|
|
DISABLE_SOURCE_PACKAGE="yes"
|
|
|
|
PROVIDES="
|
|
qt6_doc = $portVersion compat >= 6
|
|
"
|
|
|
|
BUILD_PREREQUIRES="
|
|
cmd:tar
|
|
cmd:unzstd
|
|
"
|
|
|
|
INSTALL()
|
|
{
|
|
mkdir -p $prefix/documentation/packages/qt6_base
|
|
|
|
tar -C $prefix/documentation/packages/qt6_base \
|
|
-I zstd \
|
|
--strip-components 4 \
|
|
-xvf qt6-doc-${portVersion}-1-any.pkg.tar.zst
|
|
}
|