blob: 17c643f5e7abb4a9fc41acd2c3a83c14548569ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Parmjot Singh <parmjotsinghrobot at gmail dot com>
pkgname=way-shell-git
pkgver=0.1
pkgrel=3
pkgdesc="A Gnome inspired desktop shell for Wayland compositors/window managers written in C and Gtk4."
arch=(x86_64)
url="https://github.com/ldelossa/way-shell"
license=('GPL-2.0')
depends=(libadwaita upower wireplumber json-glib libnm libpulse gtk4-layer-shell glib2)
makedepends=(meson cmake gtk-doc git)
optdepends=()
source=("git+https://github.com/ldelossa/${pkgname%-*}.git")
sha256sums=('SKIP')
build() {
cd "${pkgname%-*}"
make
}
package() {
cd "${pkgname%-*}"
make DESTDIR="$pkgdir/" install
}
|