aboutsummaryrefslogtreecommitdiffstats
path: root/community/qt5-qtquickcontrols/APKBUILD
blob: 1d369b58e2a1e75c563100287d589282b922980c (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
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=qt5-qtquickcontrols
_pkgname=${pkgname/qt5-//}-everywhere-src
pkgver=5.10.1
_ver=${pkgver/_/-}
_ver=${_ver/beta0/beta}
_ver=${_ver/rc0/rc}
_V=${_ver/rc/RC}
pkgrel=0
pkgdesc="Qt5 - module with set of QtQuick controls"
url="http://qt-project.org/"
arch="all"
license="BSD and (LGPL-2.0 with exceptions or GPL-3.0 with exceptions) and GFDL"
makedepends="qt5-qtbase-dev qt5-qtdeclarative-dev"

case $pkgver in
*_beta*|*_rc*) _rel=development_releases;;
*) _rel=official_releases;;
esac
source="http://download.qt-project.org/$_rel/qt/${pkgver%.*}/$_ver/submodules/$_pkgname-$_V.tar.xz"

builddir="$srcdir"/$_pkgname-${_V%-*}

build() {
	cd "$builddir"
	qmake-qt5 && make
}

check() {
	cd "$builddir"
	make check
}

package() {
	cd "$builddir"
	make install INSTALL_ROOT="$pkgdir"
}

sha512sums="b73e8aef52b8010d5db3516afd692a406a2c4c66360ad3212aaca35090ec65c8e13842b5dcce233787b77ddc9067a985690cf1b56d4534efc57fb2f580b12818  qtquickcontrols-everywhere-src-5.10.1.tar.xz"