PKGBUILD 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # Maintainer: Ionut Biru <ibiru@archlinux.org>
  2. # Contributor: Flamelab <panosfilip@gmail.com
  3. pkgname=gnome-shell
  4. pkgver=3.4.2
  5. pkgrel=1
  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' 'folks' 'gcr' 'gjs' 'gnome-bluetooth' 'gnome-desktop' 'gnome-menus' 'libcroco' 'libpulse' 'mutter' 'nautilus' 'networkmanager' 'telepathy-logger' '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. recorder.patch)
  18. sha256sums=('3807f7882968d032f8f5c64b0e0af51c0d016f2e1c4fd1576203c9350e412720'
  19. 'b00589e867c0ae63b47982145cb4ab366afec84a568e66867f51fa8da13027f1')
  20. build() {
  21. cd $pkgname-$pkgver
  22. patch -Np1 -i ../recorder.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 $pkgname-$pkgver
  31. make DESTDIR="$pkgdir" install
  32. }