Date: Tuesday, December 8, 2020 @ 11:17:50 Author: arojas Revision: 403107
archrelease: copy trunk to extra-x86_64 Added: qt6-wayland/repos/extra-x86_64/ qt6-wayland/repos/extra-x86_64/PKGBUILD (from rev 403106, qt6-wayland/trunk/PKGBUILD) ----------+ PKGBUILD | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) Copied: qt6-wayland/repos/extra-x86_64/PKGBUILD (from rev 403106, qt6-wayland/trunk/PKGBUILD) =================================================================== --- extra-x86_64/PKGBUILD (rev 0) +++ extra-x86_64/PKGBUILD 2020-12-08 11:17:50 UTC (rev 403107) @@ -0,0 +1,30 @@ +# Maintainer: Antonio Rojas <aro...@archlinux.org> +# Maintainer: Felix Yan <felixonm...@archlinux.org> +# Contributor: Andrea Scarpino <and...@archlinux.org> + +pkgname=qt6-wayland +_qtver=6.0.0 +pkgver=${_qtver/-/} +pkgrel=1 +arch=(x86_64) +url='https://www.qt.io' +license=(GPL3 LGPL3 FDL custom) +pkgdesc='Provides APIs for Wayland' +depends=(qt6-declarative libxcomposite) +makedepends=(cmake vulkan-headers) +groups=(qt6) +_pkgfn="${pkgname/6-/}-everywhere-src-${_qtver}" +source=("https://download.qt.io/official_releases/qt/${pkgver%.*}/$_qtver/submodules/$_pkgfn.tar.xz") +sha256sums=('fa3a3110d5a584213fa7f12ee1f6abc19d31907433925b9e2449dee8fba1c588') + +build() { + cmake -B build -S $_pkgfn + cmake --build build +} + +package() { + DESTDIR="$pkgdir" cmake --install build + + install -d "$pkgdir"/usr/share/licenses + ln -s /usr/share/licenses/qt6-base "$pkgdir"/usr/share/licenses/$pkgname +}