[arch-commits] Commit in qt5-remoteobjects/repos (2 files)

Antonio Rojas arojas at gemini.archlinux.org
Sat Jun 18 13:52:11 UTC 2022


    Date: Saturday, June 18, 2022 @ 13:52:11
  Author: arojas
Revision: 449003

archrelease: copy trunk to staging-x86_64

Added:
  qt5-remoteobjects/repos/staging-x86_64/
  qt5-remoteobjects/repos/staging-x86_64/PKGBUILD
    (from rev 449002, qt5-remoteobjects/trunk/PKGBUILD)

----------+
 PKGBUILD |   48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

Copied: qt5-remoteobjects/repos/staging-x86_64/PKGBUILD (from rev 449002, qt5-remoteobjects/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD	                        (rev 0)
+++ staging-x86_64/PKGBUILD	2022-06-18 13:52:11 UTC (rev 449003)
@@ -0,0 +1,48 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+
+pkgname=qt5-remoteobjects
+_basever=5.15.5
+pkgver=5.15.5+kde+r0
+pkgrel=1
+_commit=89407ff20e4f76314887e2f3625f5126910031ac
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Inter-process communication (IPC) module developed for Qt'
+depends=(qt5-base)
+makedepends=(qt5-declarative git)
+optdepends=('qt5-declarative: QML bindings')
+groups=(qt qt5)
+_pkgfqn=${pkgname/5-/}
+source=(git+https://invent.kde.org/qt/qt/$_pkgfqn#commit=$_commit)
+sha256sums=('SKIP')
+options=(debug)
+
+pkgver() {
+  cd $_pkgfqn
+  echo "$_basever+kde+r"`git rev-list --count v$_basever-lts-lgpl..$_commit`
+}
+
+prepare() {
+  mkdir -p build
+}
+
+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}
+}



More information about the arch-commits mailing list