aboutsummaryrefslogtreecommitdiffstats
path: root/community/qt5-qtwebchannel/APKBUILD
blob: 186438dab3bbc4bed1b782a3fd22574cf3966081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=qt5-qtwebchannel
pkgver=5.15.3_git20201028
pkgrel=0
_commit="47be9a51b01d9fd9e7f6dca81e98d4eedcec6d38"
pkgdesc="library for seamless integration of C++ +and QML applications with HTML/JavaScript clients."
url="https://www.qt.io/developers/"
arch="all !armhf" # armhf blocked by qt5-qtdeclarative
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-qtwebsockets-dev qt5-qtdeclarative-dev"
subpackages="$pkgname-dev"
builddir="$srcdir/qtwebchannel-$_commit"

case $pkgver in
	*_beta*|*_rc*) _rel=development_releases;;
	*) _rel=official_releases;;
esac

source="https://invent.kde.org/qt/qt/qtwebchannel/-/archive/$_commit/qtwebchannel-$_commit.tar.gz"

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="7437fe06dbec2e649e22b646f96d31a676e4e41dd744012a6178ef1f1fb2cae3033b6417ffea9b1dc301fcb8246378291bcb245e66725e7cfd41a435a42396de  qtwebchannel-47be9a51b01d9fd9e7f6dca81e98d4eedcec6d38.tar.gz"