PKGBUILD 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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=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=(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)
  20. sha256sums=('4e0328d43ac443e7cc0c43bb67895112643952f14cd20fff1109c6cc5849d603'
  21. '968245e7db1c6921627cf0fbce4e4504cffbdb24898f834769a23a254ed6e125')
  22. build() {
  23. cd $pkgname-$pkgver
  24. # FS#32410
  25. patch -Np1 -i ../main-Dont-mess-up-the-modal-stack-when-the-focus-a.patch
  26. PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
  27. --libexecdir=/usr/lib/gnome-shell \
  28. --localstatedir=/var --disable-static \
  29. --disable-schemas-compile
  30. make
  31. }
  32. package() {
  33. cd $pkgname-$pkgver
  34. make DESTDIR="$pkgdir" install
  35. }