blob: fb8e394cc680fe9d2aae976a6c06bfbefb2aff92 (
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
|
# Maintainer: William Pitcock <nenolod@dereferenced.org>
pkgname=gnome-shell
pkgver=3.24.2
pkgrel=1
pkgdesc="GNOME shell"
url="https://wiki.gnome.org/Projects/GnomeShell"
arch="all !aarch64 !armhf"
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
itstool
libxml2-utils"
subpackages="$pkgname-lang $pkgname-dbg"
install=""
source="http://ftp.gnome.org/pub/GNOME/sources/gnome-shell/3.24/gnome-shell-$pkgver.tar.xz"
builddir="$srcdir/gnome-shell-$pkgver"
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var \
--disable-man
make
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
sha512sums="28fc399e48d45f3eb1625c854651bf63628bfdf0ec32528c7eef11dabaee1aa5731ae3e863c640b0c31961f9346276c284e7415e9f82284c0f2dd87fbd8fc860 gnome-shell-3.24.2.tar.xz"
|