2012-10-31 12:42:21 +00:00
|
|
|
# $Id: PKGBUILD 170001 2012-10-30 23:01:35Z heftig $
|
|
|
|
# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens@gmail.com>
|
2012-04-25 00:45:05 +00:00
|
|
|
# Maintainer: Ionut Biru <ibiru@archlinux.org>
|
|
|
|
# Contributor: Michael Kanis <mkanis_at_gmx_dot_de>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - set --enable-compile-warnings=no in configure
|
|
|
|
|
|
|
|
pkgname=mutter
|
2012-10-31 12:42:21 +00:00
|
|
|
pkgver=3.6.1
|
2012-04-29 14:39:30 +00:00
|
|
|
pkgrel=2
|
2012-04-25 00:45:05 +00:00
|
|
|
pkgdesc="A window manager for GNOME"
|
|
|
|
arch=(i686 x86_64)
|
|
|
|
license=('GPL')
|
2012-10-31 12:42:21 +00:00
|
|
|
depends=('clutter' 'dconf' 'gobject-introspection' 'gsettings-desktop-schemas' 'libcanberra' 'startup-notification' 'zenity' 'libsm')
|
2012-04-25 00:45:05 +00:00
|
|
|
makedepends=('intltool' 'gnome-doc-utils')
|
|
|
|
url="http://www.gnome.org"
|
|
|
|
groups=('gnome')
|
|
|
|
options=('!libtool' '!emptydirs')
|
|
|
|
install=mutter.install
|
|
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
|
2012-10-31 12:42:21 +00:00
|
|
|
sha256sums=('4bec46ceb114a78d5f851823d8966b9b386a9319fbec740ff59bf5eb265d6637')
|
2012-04-25 00:45:05 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$pkgname-$pkgver"
|
|
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
|
|
--libexecdir=/usr/lib/mutter \
|
|
|
|
--localstatedir=/var --disable-static \
|
|
|
|
--disable-schemas-compile --enable-compile-warnings=no
|
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|