Date: Sunday, April 9, 2023 @ 09:50:57
Author: arojas
Revision: 473507
archrelease: copy trunk to testing-x86_64
Added:
qt5-location/repos/testing-x86_64/
qt5-location/repos/testing-x86_64/PKGBUILD
(from rev 473506, qt5-location/trunk/PKGBUILD)
----------+
PKGBUILD | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
Copied: qt5-location/repos/testing-x86_64/PKGBUILD (from rev 473506,
qt5-location/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2023-04-09 09:50:57 UTC (rev 473507)
@@ -0,0 +1,53 @@
+# Maintainer: Felix Yan <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=qt5-location
+_basever=5.15.9
+pkgver=5.15.9+kde+r4
+pkgrel=1
+_commit=2a8a48e9101236f118c2c4f0d79fae9c9d7b3f2a
+arch=('x86_64')
+url='https://www.qt.io'
+license=('GPL3' 'LGPL3' 'FDL' 'custom')
+pkgdesc='Provides access to position, satellite and area monitoring classes'
+depends=('qt5-declarative')
+makedepends=('git')
+groups=('qt' 'qt5')
+_pkgfqn=${pkgname/5-/}
+source=(git+https://invent.kde.org/qt/qt/$_pkgfqn#commit=$_commit
+ git+https://invent.kde.org/qt/qt/qtlocation-mapboxgl.git)
+sha256sums=('SKIP'
+ 'SKIP')
+
+pkgver() {
+ cd $_pkgfqn
+ echo "$_basever+kde+r"`git rev-list --count v$_basever-lts-lgpl..$_commit` |
sed -e 's|+kde+r0||'
+}
+
+prepare() {
+ mkdir -p build
+
+ cd ${_pkgfqn}
+ git submodule init
+ git submodule set-url src/3rdparty/mapbox-gl-native
"$srcdir"/qtlocation-mapboxgl
+ git -c protocol.file.allow=always submodule update
+}
+
+build() {
+ cd build
+
+ qmake ../${_pkgfqn}
+ make
+}
+
+package() {
+ cd build
+ 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}
+}