PKGBUILD 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. # Maintainer: Ionut Biru <ibiru@archlinux.org>
  2. # Contributor: Flamelab <panosfilip@gmail.com
  3. pkgname=gnome-shell
  4. pkgver=3.6.1
  5. pkgrel=3
  6. pkgdesc="The next generation GNOME Shell"
  7. arch=(i686 x86_64)
  8. url="http://live.gnome.org/GnomeShell"
  9. license=(GPL2)
  10. depends=(caribou folks gcr gjs gnome-bluetooth gnome-desktop gnome-menus libcroco libpulse mutter
  11. nautilus networkmanager telepathy-logger telepathy-mission-control unzip gdm)
  12. makedepends=(intltool gnome-doc-utils)
  13. optdepends=('network-manager-applet: shell integration for networkmanager')
  14. options=('!libtool' '!emptydirs')
  15. install=gnome-shell.install
  16. groups=(gnome)
  17. source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
  18. sha256sums=('566a9d902f85a89c23dc29f1789f859aa2c5a0de7dffa5235bf5a1885c76a3a7')
  19. build() {
  20. cd $pkgname-$pkgver
  21. PYTHON=/usr/bin/python2 ./configure --prefix=/usr --sysconfdir=/etc \
  22. --libexecdir=/usr/lib/gnome-shell \
  23. --localstatedir=/var --disable-static \
  24. --disable-schemas-compile
  25. make
  26. }
  27. package() {
  28. cd $pkgname-$pkgver
  29. make DESTDIR="$pkgdir" install
  30. }