mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-26 02:52:32 +01:00
Build currently blocks the builders. From `#alpine-devel`: 14:20 <@ncopa> I didn’t reach to unblock the builders. I think anything that fails can be disabled 14:20 <@ncopa> so disable gnome-shell
53 lines
1.3 KiB
Plaintext
53 lines
1.3 KiB
Plaintext
# Maintainer: William Pitcock <nenolod@dereferenced.org>
|
|
pkgname=gnome-shell
|
|
pkgver=3.28.0
|
|
pkgrel=0
|
|
pkgdesc="GNOME shell"
|
|
url="https://wiki.gnome.org/Projects/GnomeShell"
|
|
#arch="all !aarch64 !armhf !armv7 !s390x"
|
|
arch=""
|
|
license="GPL"
|
|
depends="accountsservice caribou gdm"
|
|
makedepends="gnome-desktop-dev
|
|
libxml2-dev
|
|
libcanberra-dev
|
|
gobject-introspection-dev
|
|
startup-notification-dev
|
|
libsoup-dev
|
|
polkit-dev
|
|
gcr-dev
|
|
gjs-dev
|
|
mutter-dev
|
|
libcroco-dev
|
|
pulseaudio-dev
|
|
evolution-data-server-dev evolution-dev
|
|
python3
|
|
meson
|
|
libxml2-utils
|
|
ibus-dev ibus
|
|
sassc"
|
|
subpackages="$pkgname-lang $pkgname-dbg"
|
|
source="https://download.gnome.org/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz"
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
options="!check" # Requires running X11 server
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
# Building with NetworkManager fails
|
|
# Man pages are built using an external file which is not allowed
|
|
meson . _build --prefix=/usr -Dsystemd=false -Dnetworkmanager=false -Dman=false
|
|
ninja -C _build
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
ninja -C _build test
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
DESTDIR="$pkgdir" ninja -C _build install
|
|
}
|
|
|
|
sha512sums="0c5e78393c8bca8ddb548c2cecd7799258ca00735cb7600feb9f7fa43f460719ad22636255496a40ea81dfcb779faf141b972b54555626f9e27ea5ca2377cc68 gnome-shell-3.28.0.tar.xz"
|