summaryrefslogtreecommitdiff
path: root/staging/mutter/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'staging/mutter/PKGBUILD')
-rw-r--r--staging/mutter/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/staging/mutter/PKGBUILD b/staging/mutter/PKGBUILD
new file mode 100644
index 000000000..36fd4580e
--- /dev/null
+++ b/staging/mutter/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 157214 2012-04-26 03:48:13Z allan $
+# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com>
+# Maintainer: Ionut Biru <ibiru@archlinux.org>
+# Contributor: Michael Kanis <mkanis_at_gmx_dot_de>
+
+pkgname=mutter
+pkgver=3.4.1
+pkgrel=2
+pkgdesc="A window manager for GNOME"
+arch=(i686 x86_64)
+license=('GPL')
+depends=('clutter' 'dconf' 'gobject-introspection' 'gsettings-desktop-schemas' 'libcanberra' 'startup-notification' 'zenity')
+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)
+sha256sums=('dbf08b014179980ab3d0cce645c5391c83b0ce070c73504feea8eec0ad000449')
+
+build() {
+ cd "$pkgname-$pkgver"
+ ./configure --prefix=/usr --sysconfdir=/etc \
+ --libexecdir=/usr/lib/mutter \
+ --localstatedir=/var --disable-static \
+ --disable-schemas-compile
+ make
+}
+
+package() {
+ cd "$pkgname-$pkgver"
+ make DESTDIR="$pkgdir" install
+}