12345678910111213141516171819202122232425262728293031323334 |
- # Maintainer: Ionut Biru <ibiru@archlinux.org>
- # Contributor: Flamelab <panosfilip@gmail.com
- pkgname=gnome-shell
- pkgver=3.6.2
- pkgrel=1
- pkgdesc="The next generation GNOME Shell"
- arch=(i686 x86_64)
- url="http://live.gnome.org/GnomeShell"
- license=(GPL2)
- depends=(caribou evolution-data-server gjs gnome-bluetooth gnome-menus libcroco mutter
- telepathy-logger telepathy-mission-control unzip gdm gnome-screensaver)
- makedepends=(intltool gnome-doc-utils docbook-xsl)
- optdepends=('gnome-control-center: System settings'
- 'gnome-themes-standard: Default theme')
- options=('!libtool' '!emptydirs')
- install=gnome-shell.install
- groups=(gnome)
- source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
- sha256sums=('86cff93ade1bf6a67ebd339c017d567c7dc849ff8b256a3803306f44c24b44f0')
- build() {
- cd $pkgname-$pkgver
- PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
- --libexecdir=/usr/lib/gnome-shell \
- --localstatedir=/var --disable-static \
- --disable-schemas-compile
- make
- }
- package() {
- cd $pkgname-$pkgver
- make DESTDIR="$pkgdir" install
- }
|