PKGBUILD 1.5 KB

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