-
Notifications
You must be signed in to change notification settings - Fork 1
/
PKGBUILD
80 lines (70 loc) · 1.53 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Maintainer: Daniel Hillenbrand <codeworkx [at] bbqlinux [dot] org>
pkgname=bbqlinux-desktop-mate
pkgver=1.26.0
pkgrel=1
pkgdesc="BBQLinux MATE Desktop"
arch=('any')
url="https://github.com/bbqlinux/bbqlinux-desktop-mate"
license=('GPL')
groups=('bbqlinux')
replaces=('bbqlinux-desktop-environment')
provides=('bbqlinux-desktop-environment')
depends=(
# lightdm
'lightdm'
'lightdm-bbqlinux-greeter'
# Theme
'bbqlinux-theme'
'bbqlinux-artwork'
'bbqlinux-config-gtk'
# mate
'caja'
'marco'
'mate-backgrounds'
'mate-control-center'
'mate-desktop'
'mate-icon-theme'
'mate-menus'
'mate-notification-daemon'
'mate-panel'
'mate-polkit'
'mate-session-manager'
'mate-settings-daemon'
'mate-themes'
'mate-user-guide'
# mate-extra
'atril'
'caja-image-converter'
'caja-open-terminal'
'caja-sendto'
'caja-share'
'caja-wallpaper'
'caja-xattr-tags'
'engrampa'
'eom'
'mate-applets'
'mate-calc'
'mate-icon-theme-faenza'
'mate-media'
'mate-netbook'
'mate-power-manager'
'mate-screensaver'
'mate-sensors-applet'
'mate-system-monitor'
'mate-terminal'
'mate-user-share'
'mate-utils'
'mozo'
'pluma'
# keyring
'gnome-keyring'
'libsecret'
)
package() {
cd "$pkgdir"
mkdir -p etc/systemd/user/default.target.wants
install -Dm644 "$srcdir/usr/lib/systemd/user/bbqlinux-mate-settings.service" usr/lib/systemd/user/bbqlinux-mate-settings.service
ln -s /usr/lib/systemd/user/bbqlinux-mate-settings.service etc/systemd/user/default.target.wants/
mkdir -p usr/bin
install -Dm755 "$srcdir/usr/bin/bbqlinux-mate-settings.sh" usr/bin/bbqlinux-mate-settings.sh
}