blob: 663dd2cd03ef8fead2d5ff5b9dda027c0a92cdfd (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Maintainer: Dan Johansen <strit@strits.dk>
## Build order:
## libdesq -> libdesqui -> desq-session -> desq-shell
_pkgname=Shell
pkgname=desq-shell
pkgver=0.0.8
pkgrel=6
pkgdesc="The Desktop Shell for Desq"
arch=('x86_64' 'aarch64')
url="https://gitlab.com/DesQ/${_pkgname}"
license=('GPL3')
depends=('qt5-base'
'qt5-x11extras'
'libdbusmenu-qt5'
'libxcomposite'
'libdesqui'
'libcanberra'
'pam'
'qt5-svg'
'wayland-protocols'
'dfl-utils'
'dfl-xdg'
'dfl-ipc'
'dfl-applications'
'dfl-settings'
'dfl-layouts'
'dfl-wayqt'
'dfl-status-notifier'
'dfl-hjsonparser'
'dfl-colorschemeparser'
'dfl-power'
'dfl-login1'
'dfl-inotify'
'dfl-volume'
'wayfire'
'wayfire-plugins-extra'
'wayfire-plugins-wfconfig-hjson'
'wayfire-plugins-dbusqt'
'wayfire-plugins-desq-shell'
'wayfire-plugins-toplevel-manager')
makedepends=('meson'
'ninja')
source=("https://gitlab.com/DesQ/${_pkgname}/-/archive/v${pkgver}/${_pkgname}-v${pkgver}.tar.gz")
md5sums=('063db58d9f9f062f4f72f562b4852ca8')
build() {
cd "${_pkgname}-v${pkgver}"
PKG_CONFIG_PATH=/usr/lib/wlroots0.17/pkgconfig \
meson setup .build --prefix=/usr --buildtype=release
ninja -C .build
}
package() {
cd "${_pkgname}-v${pkgver}"
DESTDIR="${pkgdir}" ninja -C .build install
}
|