diff options
author | Bart Ribbers <bribbers@disroot.org> | 2020-03-09 17:29:02 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-03-10 23:54:37 -0300 |
commit | d922d4b2ec604cd47dad00c3929a1fc7157376c9 (patch) | |
tree | 7a43024b4d6438c3eea5eca286fca338f4a9c81b /community/qt5-qtquickcontrols/APKBUILD | |
parent | e2b4cefac535e9b77c6030542899a637e284cbf4 (diff) | |
download | aports-d922d4b2ec604cd47dad00c3929a1fc7157376c9.tar.bz2 aports-d922d4b2ec604cd47dad00c3929a1fc7157376c9.tar.xz |
community/qt5-qtquickcontrols: take over maintainership
Also sync APKBUILD with other Qt packages
Diffstat (limited to 'community/qt5-qtquickcontrols/APKBUILD')
-rw-r--r-- | community/qt5-qtquickcontrols/APKBUILD | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/community/qt5-qtquickcontrols/APKBUILD b/community/qt5-qtquickcontrols/APKBUILD index 8587ebf32e..ced1df3955 100644 --- a/community/qt5-qtquickcontrols/APKBUILD +++ b/community/qt5-qtquickcontrols/APKBUILD @@ -1,27 +1,24 @@ -# Maintainer: Francesco Colista <fcolista@alpinelinux.org> +# Maintainer: Bart Ribbers <bribbers@disroot.org> pkgname=qt5-qtquickcontrols pkgver=5.14.1 -_ver=${pkgver/_/-} -_ver=${_ver/beta0/beta} -_ver=${_ver/rc0/rc} -_v=${_ver/rc/RC} -pkgrel=0 +pkgrel=1 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" +builddir="$srcdir/qtquickcontrols-everywhere-src-$pkgver" case $pkgver in -*_beta*|*_rc*) _rel=development_releases;; -*) _rel=official_releases;; + *_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/qtquickcontrols-everywhere-src-${_v%-*}" +source="https://download.qt.io/$_rel/qt/${pkgver%.*}/$pkgver/submodules/qtquickcontrols-everywhere-src-$pkgver.tar.xz" build() { - qmake-qt5 && make + qmake-qt5 + make } check() { @@ -29,7 +26,14 @@ check() { } package() { - make install INSTALL_ROOT="$pkgdir" + make INSTALL_ROOT="$pkgdir" install + + # Drop QMAKE_PRL_BUILD_DIR because reference the build dir + find "$pkgdir/usr/lib" -type f -name '*.prl' \ + -exec sed -i -e '/^QMAKE_PRL_BUILD_DIR/d' {} \; + + install -d "$pkgdir"/usr/share/licenses + ln -s /usr/share/licenses/qt5-base "$pkgdir"/usr/share/licenses/$pkgname } sha512sums="63157debfdab05f8fe141964c5a7d61373a422a7f46c01d1e5a7123998700790c63c8a5f1489c6fb25fd89c3065e1982605180568cf6a69835feeda441582be4 qtquickcontrols-everywhere-src-5.14.1.tar.xz" |