blob: 7e718db41fa788e53991e49c441c8faa9fcd1862 (
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
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
|
# Maintainer: Solomon Choina <shlomochoina at gmail dot com>
# Maintainer: Campbell Jones <arch at serebit dot com>
pkgname=budgie-desktop-git
pkgver=10.9.1.r54.g915925f6
pkgrel=1
pkgdesc="A familiar, modern desktop environment - latest git"
arch=('x86_64' 'armv7h' 'aarch64')
url='https://github.com/BuddiesOfBudgie/budgie-desktop'
license=('GPL-2.0-only AND LGPL-2.1-only')
groups=('budgie')
depends=(
'accountsservice'
'budgie-control-center'
'budgie-screensaver'
'budgie-session'
'gammastep'
'gnome-themes-standard'
'gtk-layer-shell'
'ibus'
'libgee'
'libpeas'
'libwnck3'
'libxfce4windowing-devel'
'magpie-wm'
'swayidle'
'wlopm'
'xdg-desktop-portal-gtk'
'zenity'
)
makedepends=(
'git'
'glib2-devel'
'gobject-introspection'
'intltool'
'meson'
'sassc'
'vala'
)
optdepends=(
'budgie-desktop-view: Desktop icons'
'budgie-backgrounds: Default background set'
'network-manager-applet: Network management in the panel'
'power-profiles-daemon: Manage power and performance from the panel'
'switcheroo-control: Open apps with the secondary GPU'
)
provides=('budgie-desktop')
conflicts=('budgie-desktop')
source=("$pkgname"::'git+https://github.com/BuddiesOfBudgie/budgie-desktop.git'
"gvc"::"git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git"
"30_org.archlinux.budgie-desktop.gschema.override")
sha256sums=('SKIP'
'SKIP'
'500efe7bc76e6c6c383e5fed55503d3071646cc0ee71524860d6efcf229a920a')
pkgver() {
cd "$pkgname"
git describe --tags --long | sed 's/\([^-]*-g\)/r\1/; s/-/./g; s/^v//g'
}
prepare() {
cd "$pkgname"
git submodule init
git config submodule.gvc "$srcdir/gvc"
git submodule update
}
build() {
arch-meson "$pkgname" build
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
install -Dm 644 30_org.archlinux.budgie-desktop.gschema.override -t "${pkgdir}/usr/share/glib-2.0/schemas"
}
|