mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-08 06:47:09 +02:00
48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
|
|
pkgname=qt5-qtquickcontrols
|
|
pkgver=5.9.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
|
|
}
|
|
|
|
sha512sums="f7797fe4f5360c814c426ed1db72e58d66a6ad11e9a94f62176736278f7218966032441b8c52fc815f609237bd3483e72023a3407e290b05c2cf9b815ededfe7 qtquickcontrols-opensource-src-5.9.1.tar.xz"
|