summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7876f2f0ab820cb6a49cd2c159f8a0450b21a79c (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
# Maintainer: Dan Johansen <strit@strits.dk>

## Build order:
## libdesq -> libdesqui -> desq-session -> desq-shell

_pkgname=Shell
pkgname=desq-shell
pkgver=0.0.8
pkgrel=4
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' '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}"
  meson setup .build --prefix=/usr --buildtype=release
  ninja -C .build
}

package() {
  cd "${_pkgname}-v${pkgver}"
  DESTDIR="${pkgdir}" ninja -C .build install
}