blob: a821f0eb1c8049d4b61fa049bdf2e321af73749d (
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
|
# Maintainer: Piotr Miller <nwg.piotr@gmail.com>
_pkgname=nwg-shell
pkgname=$_pkgname-git
pkgver=r413.7070b88
pkgrel=1
pkgdesc="nwg-shell meta-package, installer and updater - development version"
arch=('x86_64')
url="https://github.com/nwg-piotr/nwg-shell"
license=('MIT')
depends=('foot' 'gnome-themes-extra' 'grim' 'imagemagick' 'jq'
'libappindicator-gtk3' 'light' 'ttf-dejavu'
'network-manager-applet' 'pacman-contrib'
'papirus-icon-theme' 'playerctl' 'polkit-gnome'
'python-geopy' 'python-yaml' 'slurp' 'swappy' 'sway' 'swayidle'
'swaylock' 'swaybg' 'wl-clipboard' 'xorg-xwayland' 'wlsunset'
'azote' 'gopsuinfo' 'nwg-bar-bin' 'nwg-dock-bin' 'nwg-drawer-bin'
'nwg-menu-bin' 'nwg-look-bin' 'nwg-panel' 'nwg-shell-config'
'nwg-shell-wallpapers' 'nwg-displays' 'python-dasbus' 'swaync' 'gtklock'
'gtklock-userinfo-module' 'gtklock-powerbar-module' 'gtklock-playerctl-module')
optdepends=('chromium: suggested web browser'
'mousepad: suggested text editor'
'thunar: suggested file manager'
'nano: in case you hate vi')
makedepends=('python-setuptools' 'python-wheel')
conflicts=('nwg-shell')
source=('nwg-shell::git+https://github.com/nwg-piotr/nwg-shell#branch=main')
md5sums=('SKIP')
pkgver() {
cd "$srcdir/$_pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$srcdir/$_pkgname"
python setup.py install --root="${pkgdir}" --optimize=1
install -D -t "$pkgdir"/usr/local/bin scripts/*
install -D -t "$pkgdir"/usr/share/backgrounds nwg-shell.jpg
}
|