PKGBUILD 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # Maintainer: Ionut Biru <ibiru@archlinux.org>
  2. # Contributor: Flamelab <panosfilip@gmail.com
  3. pkgname=gnome-shell
  4. pkgver=3.6.3
  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%.*}/$pkgname-$pkgver.tar.xz
  19. fs33855.patch)
  20. sha256sums=('05b2341a0f84835644881743873d3eaccaed12f00aa7b424d876780e81723db2'
  21. '259e69256ae597f1d04c7a0070c1c90cec20afbf494d6b89e72d86b8b9c7f0ba')
  22. build() {
  23. cd $pkgname-$pkgver
  24. patch -Np1 -i ../fs33855.patch
  25. PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
  26. --libexecdir=/usr/lib/gnome-shell \
  27. --localstatedir=/var --disable-static \
  28. --disable-schemas-compile
  29. make
  30. }
  31. package() {
  32. cd $pkgname-$pkgver
  33. make DESTDIR="$pkgdir" install
  34. }