PKGBUILD 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. # Maintainer: Ionut Biru <ibiru@archlinux.org>
  2. # Contributor: Flamelab <panosfilip@gmail.com
  3. pkgname=gnome-shell
  4. pkgver=3.6.0
  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. sha256sums=('032ad32a4fa6c1f92010635e3076031323ac690f78c610184438c085c355e07b')
  18. build() {
  19. cd $pkgname-$pkgver
  20. PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
  21. --libexecdir=/usr/lib/gnome-shell \
  22. --localstatedir=/var --disable-static \
  23. --disable-schemas-compile
  24. make
  25. }
  26. package() {
  27. cd $pkgname-$pkgver
  28. make DESTDIR="$pkgdir" install
  29. }