aboutsummaryrefslogtreecommitdiffstats
path: root/community/qt5-qtlocation/APKBUILD
blob: 18b943aa675e7456bbe48638eb748d9c2e75fe3d (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
47
48
49
50
51
52
53
54
# Contributor: Francesco Colista <fcolista@alpinelinux.org>
# Maintainer: Bart Ribbers <bribbers@disroot.org>
pkgname=qt5-qtlocation
pkgver=5.15.3_git20201109
pkgrel=0
_commit="861e372b6ad81570d4f496e42fb25a6699b72f2f"
pkgdesc="Qt5 - Location component"
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"
makedepends="qt5-qtbase-dev qt5-qtdeclarative-dev icu-dev"
subpackages="$pkgname-dev"
options="!check" # No tests
builddir="$srcdir/qtlocation"

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

source="https://dev.alpinelinux.org/archive/qt5-qtlocation/qtlocation-$_commit.tar.gz
	fix-build.patch
	"

disturl="dev.alpinelinux.org:/archive/$pkgname/"

snapshot() {
	clean
	deps
	mkdir -p "$srcdir"
	cd "$srcdir"
	git clone https://invent.kde.org/qt/qt/qtlocation -b kde/5.15 --recursive
	cd qtlocation && git checkout $_commit && cd -
	tar czvf $SRCDEST/qtlocation-$_commit.tar.gz qtlocation
	rsync --progress -La $SRCDEST/qtlocation-$_commit.tar.gz $disturl
}

build() {
	qmake-qt5 "CONFIG+=posix"
	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="5e9feabbac29052377d2cd1ec22fa29b00de361122580f0f33128fadf12b72af711f2e1e114a3e82c7c00812b304287212d617c85fe1b5bb0f39f120c884d8cc  qtlocation-861e372b6ad81570d4f496e42fb25a6699b72f2f.tar.gz
eb19b97909b64a82d75732872573b25c626c924aec93dbbe9b1b27fd72354149aa0c4e2d3727a5a2519a7bee39cb6af60761ad40e29b4e7adeb89a300a710505  fix-build.patch"