blob: 844548978f2018b4efb1175b8ed674d450334b83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Description: Gestionnaire de fenĂȘtre pour Gnome3
# URL: http://www.gnome.org/
# Maintainer: NuTyX GNOME team
# Packager: piernov <piernov@piernov.org>
# Depends on: startup-notification, gconf, zenity, libcanberra, clutter, gobject-introspection, gnome-doc-utils
# Run on: startup-notification,gconf,zenity,libcanberra,clutter
name=mutter
version=3.3.92
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/$name \
--localstatedir=/var \
--enable-introspection=yes \
--disable-scrollkeeper \
--disable-schemas-compile
make CFLAGS+="-DCLUTTER_DISABLE_DEPRECATION_WARNINGS"
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
}
|