PKGBUILD 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Maintainer: Ionut Biru <ibiru@archlinux.org>
  2. # Contributor: Flamelab <panosfilip@gmail.com
  3. pkgname=gnome-shell
  4. pkgver=3.1.90.1
  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' 'folks' 'telepathy-logger' 'folks' 'networkmanager')
  11. makedepends=('intltool' 'gnome-doc-utils')
  12. optdepends=('network-manager-applet: shell integration for networkmanager'
  13. 'gnome-power-manager: shell integration for power management')
  14. options=('!libtool' '!emptydirs')
  15. install=gnome-shell.install
  16. groups=(gnome)
  17. source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*.*}/$pkgname-$pkgver.tar.xz)
  18. sha256sums=('710d5aeb32a22b7ecf53c3a74ab1f12ada64428ec23ff68ba1c96fe7a7f0cb4e')
  19. build() {
  20. cd "${srcdir}/${pkgname}-${pkgver}"
  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 "${srcdir}/${pkgname}-${pkgver}"
  29. make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install
  30. install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
  31. gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain gnome-shell ${pkgdir}/etc/gconf/schemas/*.schemas
  32. rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
  33. }