Date: Thursday, January 5, 2023 @ 21:30:13
  Author: arojas
Revision: 466029

archrelease: copy trunk to staging-x86_64

Added:
  qt6-tools/repos/staging-x86_64/
  qt6-tools/repos/staging-x86_64/PKGBUILD
    (from rev 466028, qt6-tools/trunk/PKGBUILD)

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

Copied: qt6-tools/repos/staging-x86_64/PKGBUILD (from rev 466028, 
qt6-tools/trunk/PKGBUILD)
===================================================================
--- staging-x86_64/PKGBUILD                             (rev 0)
+++ staging-x86_64/PKGBUILD     2023-01-05 21:30:13 UTC (rev 466029)
@@ -0,0 +1,46 @@
+# Maintainer: Antonio Rojas <[email protected]>
+# Maintainer: Felix Yan <[email protected]>
+# Contributor: Andrea Scarpino <[email protected]>
+
+pkgname=qt6-tools
+_qtver=6.4.2
+pkgver=${_qtver/-/}
+pkgrel=2
+arch=(x86_64)
+url='https://www.qt.io'
+license=(GPL3 LGPL3 FDL custom)
+pkgdesc='A cross-platform application and UI framework (Development Tools, 
QtHelp)'
+depends=(qt6-base)
+makedepends=(cmake ninja qt6-declarative clang llvm litehtml)
+optdepends=('qt6-declarative: for qdoc' 'clang: for qdoc and lupdate' 
'litehtml: for assistant')
+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=('a31387916184e4a5ef522d3ea841e8e931cc0f88be0824a7a354a572d5826c68')
+
+prepare() {
+# Fix build with system litehtml
+  sed -e '/qt_internal_set_exceptions_flags/d' -e '/qt_disable_warnings/d' -i 
$_pkgfn/src/assistant/CMakeLists.txt
+}
+
+build() {
+  cmake -B build -S $_pkgfn -G Ninja \
+    -DINSTALL_PUBLICBINDIR=usr/bin \
+    -DCMAKE_MESSAGE_LOG_LEVEL=STATUS
+  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
+}

Reply via email to