1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-21 02:05:16 +03:00
aports/community/qt5-qtwebchannel/APKBUILD

62 lines
1.9 KiB
Text

# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=qt5-qtwebchannel
pkgver=5.15.8_git20230103
pkgrel=0
_commit="f8949655ccfacc2d34cfb0af23c540db84a2b9e5"
pkgdesc="Library for seamless integration of C++ +and QML applications with HTML/JavaScript clients."
url="https://www.qt.io/developers/"
arch="all"
license="LGPL-2.1-only AND LGPL-3.0-only AND GPL-3.0-only AND Qt-GPL-exception-1.0"
options="!check" # No tests
makedepends="
qt5-qtbase-dev
qt5-qtdeclarative-dev
qt5-qtwebsockets-dev
"
subpackages="$pkgname-dev"
builddir="$srcdir/qtwebchannel-$_commit"
case $pkgver in
*_beta*|*_rc*) _rel=development_releases;;
*) _rel=official_releases;;
esac
source="https://dev.alpinelinux.org/archive/qt/qtwebchannel-$_commit.tar.xz"
_disturl="dev.alpinelinux.org:/archive/qt/"
snapshot() {
clean
deps
mkdir -p "$srcdir" && cd "$srcdir"
git clone https://invent.kde.org/qt/qt/qtwebchannel.git && cd qtwebchannel
git archive --format tar --prefix=qtwebchannel-$_commit/ $_commit | xz -T0 -9 -vv - > $SRCDEST/qtwebchannel-$_commit.tar.xz
rsync --progress -La $SRCDEST/qtwebchannel-$_commit.tar.xz $_disturl
}
prepare() {
default_prepare
# We need to make the build system think we're running in a git repository
# so it correctly symlinks during the build
mkdir .git
}
build() {
qmake-qt5
make
}
package() {
make INSTALL_ROOT="$pkgdir" install
# Drop QMAKE_PRL_BUILD_DIR because reference the build dir
find "$pkgdir/usr/lib" -type f -name '*.prl' \
-exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \;
install -d "$pkgdir"/usr/share/licenses
ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/$pkgname
}
sha512sums="
2f679a0ce93f895d4825617204420fd900fb7f2cb7a52ed6e7ef316875e6fdaf106816c645f584f7359f0bb64097b7629bef193410fa4445693c23be103bbbf0 qtwebchannel-f8949655ccfacc2d34cfb0af23c540db84a2b9e5.tar.xz
"