blob: e2e322f38c4d523218204fb9085155d40008d38d (
plain) (
blame)
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
|
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=qt5-qtquickcontrols
_pkgname=qtquickcontrols-everywhere
pkgver=5.15.4
pkgrel=0
pkgdesc="Controls for use with Qt Quick"
url="https://www.qt.io/"
arch="all"
license="(LGPL-3.0-only WITH Qt-LGPL-exception-1.1 OR GPL-3.0-only WITH Qt-GPL-exception-1.0) AND GFDL-1.3"
depends=""
makedepends="qt5-qtbase-dev qt5-qtdeclarative-dev"
source="https://download.qt.io/official_releases/qt/${pkgver%.*}/$pkgver/submodules/$_pkgname-opensource-src-$pkgver.tar.xz"
builddir="$srcdir"/$_pkgname-src-$pkgver
build() {
qmake
make
}
check() {
make check
}
package() {
make install INSTALL_ROOT="$pkgdir"
}
sha512sums="887a8f5fdcd3764575f9068ec8428526a049bb09ae0c214daef3652527d5e448baa53738dccf316b20ccf18f36951ecebd570aee3a27f9c32b9213ef7629de10 qtquickcontrols-everywhere-opensource-src-5.15.4.tar.xz"
|