PKGBUILD 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # Maintainer: Ionut Biru <ibiru@archlinux.org>
  2. # Contributor: Flamelab <panosfilip@gmail.com
  3. pkgname=gnome-shell
  4. pkgver=3.0.0.1
  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' 'telepathy-logger')
  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. 646333.patch)
  18. sha256sums=('468eaee2a4b43e425e53c12f6ea98f834ad7b3c8b7d8cf493c65b4a67f82be33'
  19. '42fd08d1ca81c8bcc2848f301463b2c7b28299e8b3a508d2a3f24cb5a9bba3ed')
  20. build() {
  21. cd "${srcdir}/${pkgname}-${pkgver}"
  22. # https://bugzilla.gnome.org/show_bug.cgi?id=646333
  23. patch -Np1 -i "$srcdir/646333.patch"
  24. ./configure --prefix=/usr --sysconfdir=/etc \
  25. --libexecdir=/usr/lib/gnome-shell \
  26. --localstatedir=/var --disable-static \
  27. --disable-schemas-compile
  28. make
  29. }
  30. package() {
  31. cd "${srcdir}/${pkgname}-${pkgver}"
  32. make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install
  33. install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
  34. gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain gnome-shell ${pkgdir}/etc/gconf/schemas/*.schemas
  35. rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
  36. }