1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- # Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
- # Contributor: Ionut Biru <ibiru@archlinux.org>
- # Contributor: Flamelab <panosfilip@gmail.com
- pkgname=gnome-shell
- pkgver=3.38.2+22+g3a343a8aa
- pkgrel=1
- epoch=1
- pkgdesc="Next generation desktop shell"
- url="https://wiki.gnome.org/Projects/GnomeShell"
- arch=(x86_64)
- license=(GPL2)
- depends=(accountsservice gcr gjs gnome-bluetooth upower gnome-session
- gnome-settings-daemon gnome-themes-extra gsettings-desktop-schemas
- libcanberra-pulse libgdm libsecret mutter nm-connection-editor unzip
- gstreamer libibus gnome-autoar gnome-disk-utility gst-plugin-pipewire)
- makedepends=(gtk-doc gnome-control-center evolution-data-server gobject-introspection git meson
- sassc asciidoc bash-completion)
- optdepends=('gnome-control-center: System settings'
- 'evolution-data-server: Evolution calendar integration')
- groups=(gnome)
- install=gnome-shell.install
- _commit=3a343a8aad28543d10cbb3159c4bf03a619eea0d # gnome-3-38
- source=("git+https://gitlab.gnome.org/GNOME/gnome-shell.git#commit=$_commit"
- "git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git")
- sha256sums=('SKIP'
- 'SKIP')
- pkgver() {
- cd $pkgname
- git describe --tags | sed 's/-/+/g'
- }
- prepare() {
- cd $pkgname
- git submodule init
- git submodule set-url subprojects/gvc "$srcdir/libgnome-volume-control"
- git submodule update
- }
-
- build() {
- arch-meson $pkgname build -D gtk_doc=true
- meson compile -C build
- }
- package() {
- depends+=(libmutter-7.so)
- DESTDIR="$pkgdir" meson install -C build
- }
|