PKGBUILD 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # Maintainer: Ionut Biru <ibiru@archlinux.org>
  2. # Contributor: Flamelab <panosfilip@gmail.com
  3. pkgname=gnome-shell
  4. pkgver=3.0.0
  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. sha256sums=('3036f9e2b738fef4fd457b6d1ddf78d68d7a56235072a19168ae643a164b1a2f')
  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. }