blob: 4b0003534687d2cc8121a2c070fdf4622a13c7c1 (
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
|
# Maintainer: Dan Johansen <strit@archlinux.orgk>
## Build order:
## dfl-ipc -> dfl-applications
_pkgname=applications
pkgname=('dfl-applications')
pkgver=0.3.0
pkgrel=1
pkgdesc="A class that extends QApplications"
arch=('x86_64' 'aarch64')
url="https://gitlab.com/desktop-frameworks/$_pkgname"
license=('GPL-3.0-only')
depends=(
'qt6-base'
'dfl-ipc'
)
makedepends=(
'meson'
'ninja'
)
source=("$url/-/archive/v${pkgver}/${_pkgname}-v${pkgver}.tar.gz")
sha256sums=('125c9ea260f013cb03e512f91ebf0ed87b41e87c5dfda1aba41724244b4564c1')
build() {
cd "${_pkgname}-v${pkgver}"
echo "Building QT6 version..."
meson setup .build --prefix=/usr --buildtype=release
ninja -C .build
}
package() {
cd "${_pkgname}-v${pkgver}"
DESTDIR="${pkgdir}" ninja -C .build install
}
|