mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
27 lines
874 B
Bash
27 lines
874 B
Bash
# $Id: PKGBUILD 44691 2009-07-03 18:00:46Z jgc $
|
|
# Maintainer: Jan de Groot <jan@archlinux.org>
|
|
|
|
pkgname=gnome-desktop
|
|
pkgver=2.26.3
|
|
pkgrel=1
|
|
pkgdesc="The GNOME Desktop"
|
|
arch=(i686 x86_64)
|
|
license=('GPL' 'LGPL')
|
|
depends=('gconf>=2.26.0-3' 'startup-notification>=0.10')
|
|
makedepends=('gnome-doc-utils>=0.16.1' 'pkgconfig' 'intltool')
|
|
optdepends=('gnome-python: gnome-about')
|
|
url="http://www.gnome.org"
|
|
groups=('gnome')
|
|
options=('!libtool')
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/2.26/${pkgname}-${pkgver}.tar.bz2)
|
|
md5sums=('1668dcedde64b30aa02f0a73e59c957d')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var --disable-static \
|
|
--with-gnome-distributor="Archlinux" \
|
|
--disable-scrollkeeper || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|