PKGBUILD 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # Maintainer: Ionut Biru <ibiru@archlinux.org>
  2. # Contributor: Flamelab <panosfilip@gmail.com
  3. pkgname=gnome-shell
  4. pkgver=2.91.90
  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' 'gconf' 'gjs' 'gnome-menus' 'gnome-desktop' 'libcroco' 'libcanberra' 'libpulse' 'telepathy-glib' 'polkit-gnome' 'gobject-introspection'
  11. 'evolution-data-server')
  12. makedepends=('intltool' 'pkgconfig' 'gnome-doc-utils' 'bluez')
  13. options=('!libtool' '!emptydirs')
  14. install=gnome-shell.install
  15. source=(http://ftp.gnome.org/pub/GNOME/sources/gnome-shell/2.91/gnome-shell-$pkgver.tar.bz2)
  16. sha256sums=('0cb01d1b9cdd060883a88fab9377b8c4498ac24a967c5135e6ab6c05f598e332')
  17. build() {
  18. cd "${srcdir}/${pkgname}-${pkgver}"
  19. ./configure --prefix=/usr --sysconfdir=/etc \
  20. --localstatedir=/var --disable-static \
  21. --disable-schemas-compile
  22. make
  23. }
  24. package() {
  25. cd "${srcdir}/${pkgname}-${pkgver}"
  26. make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install
  27. install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
  28. gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain gnome-shell ${pkgdir}/etc/gconf/schemas/*.schemas
  29. rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
  30. }