PKGBUILD 1.2 KB

123456789101112131415161718192021222324252627282930
  1. # Maintainer: Ionut Biru <ibiru@archlinux.org>
  2. # Contributor: Flamelab <panosfilip@gmail.com
  3. pkgname=gnome-shell
  4. pkgver=2.29.1
  5. pkgrel=1
  6. pkgdesc="The next generation GNOME Shell. Experimental, GNOME 3.0 version."
  7. arch=('i686' 'x86_64')
  8. url="http://live.gnome.org/GnomeShell"
  9. license=('GPL2')
  10. depends=('gnome-desktop>=2.29.92' 'gnome-python' 'gnome-menus>=2.29.92' 'mutter>=2.29.1' 'librsvg' 'gjs>=0.6')
  11. makedepends=('intltool' 'pkgconfig' 'gnome-doc-utils>=0.19.5' 'gir-repository')
  12. options=('!libtool' '!emptydirs')
  13. install=gnome-shell.install
  14. source=(http://ftp.gnome.org/pub/GNOME/sources/gnome-shell/2.29/gnome-shell-$pkgver.tar.bz2)
  15. sha256sums=('710b863c0beea45543f8057d31b028ec85e19efeedda2b964d784d6fc1729c0b')
  16. build() {
  17. cd ${srcdir}/${pkgname}-${pkgver}
  18. ./configure --prefix=/usr --sysconfdir=/etc \
  19. --localstatedir=/var --disable-static || return 1
  20. make || return 1
  21. make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1
  22. install -m755 -d "${pkgdir}/usr/share/gconf/schemas"
  23. gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain gnome-shell ${pkgdir}/etc/gconf/schemas/*.schemas || return 1
  24. rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
  25. }