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.3.91
  5. pkgrel=0
  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' 'gtk-doc' 'gnome-common')
  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=('566f78596dfd665f399c835f288dc4f42e161adc0f0a9d88f09dc72772299d2a')
  18. build() {
  19. cd "$pkgname-$pkgver"
  20. ./autogen.sh
  21. PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
  22. --libexecdir=/usr/lib/gnome-shell \
  23. --localstatedir=/var --disable-static \
  24. --disable-schemas-compile
  25. make
  26. }
  27. package() {
  28. cd "$pkgname-$pkgver"
  29. make DESTDIR="$pkgdir" install
  30. }