blob: 1a94a357dd76073998984657e46d4692fe887286 (
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
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=qt5-qtquickcontrols
_pkgname=${pkgname/qt5-//}-everywhere-src
pkgver=5.12.5
_ver=${pkgver/_/-}
_ver=${_ver/beta0/beta}
_ver=${_ver/rc0/rc}
_v=${_ver/rc/RC}
pkgrel=2
pkgdesc="Qt5 - module with set of QtQuick controls"
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"
case $pkgver in
*_beta*|*_rc*) _rel=development_releases;;
*) _rel=official_releases;;
esac
source="https://download.qt.io/$_rel/qt/${pkgver%.*}/$_ver/submodules/qtquickcontrols-everywhere-src-$_v.tar.xz"
builddir="$srcdir/$_pkgname-${_v%-*}"
build() {
qmake-qt5 && make
}
check() {
make check
}
package() {
make install INSTALL_ROOT="$pkgdir"
}
sha512sums="4539a6ce1ee20f71f6bf48271bc3fe1125bd21899cf36142d1c3d41a68ba56211f27d6e4403c69e86bd4698c7c7c79bc60f2a78ef1b19c5eab5b8690d1a01037 qtquickcontrols-everywhere-src-5.12.5.tar.xz"
|