-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPKGBUILD
59 lines (56 loc) · 1.86 KB
/
PKGBUILD
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
59
# Maintainer: Jonas Strassel <info@jonas-strassel.de>
pkgname=manjaro-sway-settings
pkgver=20200110
pkgrel=1
arch=('any')
_pkgbase=desktop-settings
url="https://gitlab.manjaro.org/profiles-and-settings/$_pkgbase"
license=('GPL')
pkgdesc='Manjaro Sway Settings'
groups=('sway-manjaro')
depends=(
'manjaro-base-skel'
'waybar' # configurable bar
'light' # cli to control brightness
'mako' # desktop notifications
'sway' # the desktop manager
'sbdp' # sway config docs parser
'sway-launcher-desktop' # tui launcher application
'swaylock' # lockscreen
'grim' # screenshot tool
'slurp' # helper for grim
'wob' # wayland overlay bar for brightness and volume
'termite' # configurable terminal application
'wlogout' # nice logout menu
'noto-fonts-emoji' # emji font
'nerd-fonts-roboto-mono' # default monospace font
'ttf-material-design-icons-webfont' # material design icons used in waybar
'python-hjson' # cleaning json in config files
'jq' # parsing and manipulating json
'khal' # calendar application around caldav
'lm_sensors' # display sensor information
)
makedepends=('git')
optdepends=(
'ranger: a keyboard centric file manager'
'qutebrowser: a keyboard-centric browser'
'flashfocus: better flashing on focus changes'
'swaylock-effects: swaylock with nicer effects'
'wlsunset: time & place based light temperature'
'kanshi: automatically load matching output profiles'
'autotiling: automated tiling'
)
conflicts=('manjaro-desktop-settings' 'manjaro-sway-settings-git')
provides=('manjaro-desktop-settings')
_branch=sway
source=("git+$url.git#branch=$_branch")
md5sums=("SKIP")
pkgver() {
date +%Y%m%d
}
package() {
install -d $pkgdir/etc
install -d $pkgdir/usr
cp -r $_pkgbase/community/sway/etc/* "${pkgdir}/etc/"
cp -r $_pkgbase/community/sway/usr/* "${pkgdir}/usr/"
}