PKGBUILD 1.1 KB

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