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
|
2014-02-20 14:06:39 +00:00
|
|
|
pkgver=3.10.4
|
2014-01-16 21:51:23 +00:00
|
|
|
pkgrel=1
|
2012-04-25 00:45:05 +00:00
|
|
|
pkgdesc="A window manager for GNOME"
|
|
|
|
arch=(i686 x86_64)
|
|
|
|
license=('GPL')
|
2013-10-07 14:09:24 +00:00
|
|
|
depends=('clutter' 'dconf' 'gobject-introspection' 'gsettings-desktop-schemas' 'libcanberra' 'startup-notification' 'zenity' 'libsm' 'gnome-desktop' 'upower')
|
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
|
2013-11-16 17:00:23 +00:00
|
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/${pkgver:0:4}/$pkgname-$pkgver.tar.xz
|
|
|
|
0001-monitor-expose-min-backlight-step.patch)
|
2014-02-20 14:06:39 +00:00
|
|
|
sha256sums=('9159c40ea9f5c5e3d1e67cc12ebcbd6328a7b732274195b4e5bdacb3cb1771e6'
|
2013-11-16 17:00:23 +00:00
|
|
|
'f1ef173d96ac27abdcf765972d2ac434f63bf4629b8bd51c177e8963d07f5eb7')
|
|
|
|
|
|
|
|
prepare() {
|
|
|
|
cd "$pkgname-$pkgver"
|
|
|
|
|
|
|
|
# FS#37224
|
|
|
|
patch -Np1 -i ../0001-monitor-expose-min-backlight-step.patch
|
|
|
|
}
|
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
|
2013-05-30 14:15:19 +00:00
|
|
|
|
|
|
|
#https://bugzilla.gnome.org/show_bug.cgi?id=655517
|
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
|
2012-04-25 00:45:05 +00:00
|
|
|
make
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$pkgname-$pkgver"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|