aports/community/qt5-qtremoteobjects/APKBUILD
psykose 98b4aa9403 community/qt5*: upgrade to correct kde/5.15 commits
the prior 5.15.9- tags correspond to upstream qt, not the kde patches.

for most this is the same commit (no patches), but base, wayland, .. all
have kde patches.
2023-04-23 19:00:28 +02:00

61 lines
1.8 KiB
Plaintext

# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=qt5-qtremoteobjects
pkgver=5.15.9_git20230323
pkgrel=1
_module="${pkgname#qt5-}"
_pkgver=27b496d5aff650e4cf9a3148857c723dce10ef25
_fullname=$_module-$_pkgver
pkgdesc="Qt Remote Objects (QtRO) is an inter-process communication (IPC) module developed for Qt"
url="https://www.qt.io/developers/"
arch="all"
license="( LGPL-2.0-or-later OR GPL-3.0-only OR GPL-2.0-or-later ) AND Qt-GPL-exception-1.0"
makedepends="qt5-qtbase-dev"
subpackages="$pkgname-dev"
options="!check" # No tests
source="https://dev.alpinelinux.org/archive/qt/$_fullname.tar.xz"
builddir="$srcdir/$_fullname"
_disturl="dev.alpinelinux.org:/archive/qt/"
snapshot() {
clean
makedepends="git xz rsync tar" deps
mkdir -p "$srcdir" && cd "$srcdir"
git clone --filter=tree:0 https://invent.kde.org/qt/qt/$_module.git .
git archive --format tar --prefix=$_fullname/ $_pkgver > "$SRCDEST"/$_fullname.tar
xz -vv -T0 -9 -e "$SRCDEST"/$_fullname.tar
rsync --progress -La "$SRCDEST"/$_fullname.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
}
check() {
make check
}
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="
0435479248e8a813bee3bcfb2b3f8f5326be87245b0191cb76f98e4ca10d5b061c23896994b825d1ce129231f46292e583b88603c99cdd2974029cb319323ddc qtremoteobjects-27b496d5aff650e4cf9a3148857c723dce10ef25.tar.xz
"