blob: 8a14656564817b714a8f948099fefe6aa38d94a5 (
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
|
# Maintainer: Campbell Jones <arch at serebit dot com>
pkgname=budgie-control-center-git
pkgver=1.2.0.r0.g5087342d0
pkgrel=1
pkgdesc="Budgie's main interface to configure various aspects of the desktop, latest git"
arch=("x86_64" "armv7h" "aarch64")
url="https://github.com/BuddiesOfBudgie/budgie-control-center"
license=(GPL)
depends=(accountsservice gnome-bluetooth gnome-online-accounts gnome-settings-daemon ibus
libgtop libpwquality smbclient libcheese libnma udisks2 libhandy gsound colord-gtk)
makedepends=(docbook-xsl modemmanager meson git)
optdepends=("system-config-printer: Printer settings"
"gnome-user-share: WebDAV file sharing"
"gnome-remote-desktop: Screen sharing"
"rygel: Media sharing"
"openssh: Remote login"
"power-profiles-daemon: Power profiles support")
provides=(budgie-control-center)
conflicts=(budgie-control-center)
source=("$pkgname"::"git+https://github.com/BuddiesOfBudgie/budgie-control-center.git"
"gvc"::"git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git")
sha256sums=('SKIP'
'SKIP')
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.url "$srcdir/gvc"
git submodule update
}
build() {
arch-meson "$pkgname" build -Ddocumentation=true
meson compile -C build
}
package() {
meson install -C build --destdir "$pkgdir"
}
|