[arch-commits] Commit in qt6-declarative/repos (2 files)

Antonio Rojas arojas at gemini.archlinux.org
Fri Apr 8 19:48:35 UTC 2022


    Date: Friday, April 8, 2022 @ 19:48:35
  Author: arojas
Revision: 442071

archrelease: copy trunk to testing-x86_64

Added:
  qt6-declarative/repos/testing-x86_64/
  qt6-declarative/repos/testing-x86_64/PKGBUILD
    (from rev 442070, qt6-declarative/trunk/PKGBUILD)

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

Copied: qt6-declarative/repos/testing-x86_64/PKGBUILD (from rev 442070, qt6-declarative/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2022-04-08 19:48:35 UTC (rev 442071)
@@ -0,0 +1,44 @@
+# Maintainer: Antonio Rojas <arojas at archlinux.org>
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Andrea Scarpino <andrea at archlinux.org>
+
+pkgname=qt6-declarative
+_qtver=6.3.0
+pkgver=${_qtver/-/}
+pkgrel=1
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='Classes for QML and JavaScript languages'
+depends=(qt6-base)
+makedepends=(cmake ninja python at-spi2-core qt6-shadertools qt6-languageserver)
+optdepends=('qt6-languageserver: for qmlls')
+conflicts=(qt6-quickcontrols2)
+provides=(qt6-quickcontrols2)
+replaces=(qt6-quickcontrols2)
+groups=(qt6)
+options=(debug)
+_pkgfn=${pkgname/6-/}-everywhere-src-$_qtver
+source=(https://download.qt.io/official_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz)
+sha256sums=('d294b029dc2b2d4f65da516fdc3b8088d32643eb7ff77db135a8b9ce904caa37')
+
+build() {
+  export CXXFLAGS+=" -ffat-lto-objects"
+  cmake -B build -S $_pkgfn -G Ninja \
+    -DINSTALL_PUBLICBINDIR=usr/bin
+  cmake --build build
+}
+
+package() {
+  DESTDIR="$pkgdir" cmake --install build
+
+# Install symlinks for user-facing tools
+  cd "$pkgdir"
+  mkdir usr/bin
+  while read _line; do
+    ln -s $_line
+  done < "$srcdir"/build/user_facing_tool_links.txt
+
+  install -d "$pkgdir"/usr/share/licenses
+  ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname
+}



More information about the arch-commits mailing list