blob: 92b486352b134065af85fb8440f7a62023a5f29a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Maintainer: Dan Johansen <strit@strits.dk>
_pkgname=wayqt
pkgbase=dfl-wayqt
pkgname=('dfl-wayqt' 'dfl-wayqt-qt6')
pkgver=0.2.0
pkgrel=2
pkgdesc="A Qt-based wrapper for various wayland protocols"
arch=('x86_64' 'aarch64')
url="https://gitlab.com/desktop-frameworks/$_pkgname"
license=('GPL3')
depends=('wayland-protocols')
makedepends=('meson' 'ninja' 'qt5-base' 'qt6-base' 'qt5-wayland' 'qt6-wayland')
source=("$url/-/archive/v${pkgver}/${_pkgname}-v${pkgver}.tar.gz")
md5sums=('b7f15524bd1b017a50b672e821ca8716')
build() {
cd "${_pkgname}-v${pkgver}"
echo "Building QT5 version..."
meson .build --prefix=/usr --buildtype=release
ninja -C .build
echo "Building QT6 version..."
meson .build-qt6 --prefix=/usr -Duse_qt_version=qt6 --buildtype=release
ninja -C .build-qt6
}
package_dfl-wayqt() {
depends+=('qt5-base' 'qt5-wayland')
cd "${_pkgname}-v${pkgver}"
DESTDIR="${pkgdir}" ninja -C .build install
}
package_dfl-wayqt-qt6() {
depends+=('qt6-base' 'qt6-wayland')
cd "${_pkgname}-v${pkgver}"
DESTDIR="${pkgdir}" ninja -C .build-qt6 install
}
|