PKGBUILD 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Maintainer: Ionut Biru <ibiru@archlinux.org>
  2. # Contributor: Flamelab <panosfilip@gmail.com
  3. pkgname=gnome-shell
  4. pkgver=2.91.91
  5. pkgrel=2
  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' 'gconf' 'dconf' 'gjs' 'gnome-menus' 'gnome-desktop' 'libcroco' 'libcanberra' 'libpulse' 'telepathy-glib' 'polkit-gnome'
  11. 'gobject-introspection' 'evolution-data-server' 'gnome-bluetooth' 'gstreamer0.10')
  12. makedepends=('intltool' 'gnome-doc-utils')
  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.bz2)
  17. sha256sums=('a639a8ce7fadbc1bef2002ea122798773a5fae213bc734f8254e347e56ec5213')
  18. build() {
  19. cd "${srcdir}/${pkgname}-${pkgver}"
  20. ./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. }