summaryrefslogtreecommitdiffstats
path: root/gnome-shell/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'gnome-shell/Pkgfile')
-rw-r--r--gnome-shell/Pkgfile35
1 files changed, 35 insertions, 0 deletions
diff --git a/gnome-shell/Pkgfile b/gnome-shell/Pkgfile
new file mode 100644
index 0000000..c86a89a
--- /dev/null
+++ b/gnome-shell/Pkgfile
@@ -0,0 +1,35 @@
+# Description: Le GNOME Shell nouvelle génération
+# URL: http://live.gnome.org/GnomeShell
+# Maintainer: NuTyX GNOME team
+# Packager: piernov <piernov@piernov.org>
+# Depends on: gnome, mutter, gjs, telepathy-glib, telepathy-logger
+# Run on: gnome,mutter,gjs,telepathy-glib,telepathy-logger
+
+name=gnome-shell
+version=3.1.3
+release=1
+source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz
+ favorite-apps.patch)
+
+build() {
+ cd $name-$version
+ patch -p1 < ../favorite-apps.patch
+
+ sed "s/Meta-3.0/Meta-3.1/" -i src/Makefile.am
+ sed "s/Meta-3.0/Meta-3.1/" -i src/Makefile.in
+
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --libexecdir=/usr/lib/gnome-shell \
+ --localstatedir=/var \
+ --disable-schemas-compile \
+ --disable-gtk-doc
+ make
+ make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=$PKG install
+
+ install -m755 -d $PKG/usr/share/gconf/schemas
+ gconf-merge-schema $PKG/usr/share/gconf/schemas/$name.schemas --domain $name $PKG/etc/gconf/schemas/*.schemas
+ rm -f $PKG/etc/gconf/schemas/*.schemas
+
+ rm -rf $PKG/usr/share/gtk-doc
+}