PKGBUILD 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Maintainer: Ionut Biru <ibiru@archlinux.org>
  2. # Contributor: Flamelab <panosfilip@gmail.com
  3. pkgname=gnome-shell
  4. pkgver=3.2.2
  5. pkgrel=2
  6. pkgdesc="The next generation GNOME Shell"
  7. arch=('i686' 'x86_64')
  8. url="http://live.gnome.org/GnomeShell"
  9. license=('GPL2')
  10. depends=('mutter' 'gjs' 'libcroco' 'gnome-bluetooth' 'gnome-desktop' 'gnome-menus' 'libpulse' 'folks' 'telepathy-logger' 'networkmanager' 'caribou' 'nautilus' 'telepathy-mission-control' 'unzip')
  11. makedepends=('intltool' 'gnome-doc-utils')
  12. optdepends=('network-manager-applet: shell integration for networkmanager')
  13. options=('!libtool' '!emptydirs')
  14. install=gnome-shell.install
  15. groups=(gnome)
  16. source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz
  17. revert-notificationdaemon-group-based-on-pid-and-titles.patch)
  18. sha256sums=('68967b9d58ad0551d7d3d28a276526a15faf1fc1d27f4624eb405663910e2eb8'
  19. '9e0337cd25d29d7215561d6fa30612d69c89fe7c27aa563a0c0b8a5b6f6cf12a')
  20. build() {
  21. cd "$srcdir/$pkgname-$pkgver"
  22. patch -Np1 -R -i "$srcdir/revert-notificationdaemon-group-based-on-pid-and-titles.patch"
  23. PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
  24. --libexecdir=/usr/lib/gnome-shell \
  25. --localstatedir=/var --disable-static \
  26. --disable-schemas-compile
  27. make
  28. }
  29. package() {
  30. cd "$srcdir/$pkgname-$pkgver"
  31. make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
  32. install -m755 -d "$pkgdir/usr/share/gconf/schemas"
  33. gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" --domain gnome-shell "$pkgdir"/etc/gconf/schemas/*.schemas
  34. rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
  35. }