PKGBUILD 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Maintainer: Ionut Biru <ibiru@archlinux.org>
  2. # Contributor: Flamelab <panosfilip@gmail.com
  3. pkgname=gnome-shell
  4. pkgver=3.6.3.1
  5. pkgrel=3
  6. pkgdesc="The next generation GNOME Shell"
  7. arch=(i686 x86_64)
  8. url="http://live.gnome.org/GnomeShell"
  9. license=(GPL2)
  10. depends=(caribou evolution-data-server gjs gnome-bluetooth gnome-menus libcroco mutter
  11. telepathy-logger telepathy-mission-control unzip gdm gnome-screensaver)
  12. makedepends=(intltool gnome-doc-utils docbook-xsl)
  13. optdepends=('gnome-control-center: System settings'
  14. 'gnome-themes-standard: Default theme')
  15. options=('!libtool' '!emptydirs')
  16. install=gnome-shell.install
  17. groups=(gnome)
  18. source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver::3}/$pkgname-$pkgver.tar.xz
  19. main-Dont-mess-up-the-modal-stack-when-the-focus-a.patch nm-libexecdir.patch)
  20. sha256sums=('4e0328d43ac443e7cc0c43bb67895112643952f14cd20fff1109c6cc5849d603'
  21. '968245e7db1c6921627cf0fbce4e4504cffbdb24898f834769a23a254ed6e125'
  22. 'e5bb10ad2e5c3e0fde3d05babd1bfdda701e553e02d493f7e54cb7832ce7e607')
  23. build() {
  24. cd $pkgname-$pkgver
  25. # FS#32410
  26. patch -Np1 -i ../main-Dont-mess-up-the-modal-stack-when-the-focus-a.patch
  27. # FS#30747 FS#32730 Problems due to libexecdir different from NM
  28. patch -Np1 -i ../nm-libexecdir.patch
  29. PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
  30. --libexecdir=/usr/lib/gnome-shell \
  31. --localstatedir=/var --disable-static \
  32. --disable-schemas-compile
  33. make
  34. }
  35. package() {
  36. cd $pkgname-$pkgver
  37. make DESTDIR="$pkgdir" install
  38. }