PKGBUILD 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # Maintainer: Ionut Biru <ibiru@archlinux.org>
  2. # Contributor: Flamelab <panosfilip@gmail.com
  3. pkgname=gnome-shell
  4. pkgver=3.1.91
  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=('mutter' 'gjs' 'libcroco' 'gnome-bluetooth' 'gnome-desktop' 'gnome-menus' 'libpulse' 'folks' 'telepathy-logger' 'networkmanager' 'caribou')
  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=('54cc92ee03739ffe7cacdef3138d9a86990e2b204c895f5188c722b802ea585f')
  18. build() {
  19. cd "${srcdir}/${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 "${srcdir}/${pkgname}-${pkgver}"
  28. make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install
  29. install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
  30. gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain gnome-shell ${pkgdir}/etc/gconf/schemas/*.schemas
  31. rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
  32. }