blob: 5c921fb91e4a9ad5d45aa781157234a2dde34d54 (
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
|
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=qt5-qtquickcontrols
pkgver=5.6.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 (LGPLv2 with exceptions or GPLv3 with exceptions) and GFDL"
depends=""
depends_dev="qt5-qtbase-dev qt5-qtdeclarative-dev"
makedepends="$depends_dev"
install=""
subpackages=""
case $pkgver in
*_beta*|*_rc*) _rel=development_releases;;
*) _rel=official_releases;;
esac
source="http://download.qt-project.org/$_rel/qt/${pkgver%.*}/$_ver/submodules/qtquickcontrols-opensource-src-$_V.tar.xz"
_builddir="$srcdir"/qtquickcontrols-opensource-src-$_V
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$_builddir"
qmake-qt5 && make || return 1
}
package() {
cd "$_builddir"
make install INSTALL_ROOT="$pkgdir" || return 1
}
md5sums="77717d2f252ae93d5e81fa35b3f0588f qtquickcontrols-opensource-src-5.6.1.tar.xz"
sha256sums="012aa6c4a697f352a9dc1373d8c1f37e33a6d956b6d14be7d1f9e4637d46a691 qtquickcontrols-opensource-src-5.6.1.tar.xz"
sha512sums="e38a8d573d96670b4dd5667c13dd034900dcff0cb9360b52a9656d6791c924cd7fd463d39c812269dfcdd6640f265e197820253247a89e7f16c903b50abec0ba qtquickcontrols-opensource-src-5.6.1.tar.xz"
|