diff options
author | fanch <fanchyannmaria at orange dot fr> | 2010-02-15 16:28:35 +0100 |
---|---|---|
committer | fanch <fanchyannmaria at orange dot fr> | 2010-02-15 16:28:35 +0100 |
commit | 0ccedd9a66979af592db57882bbe2fa0d746aea9 (patch) | |
tree | a533d558315131dcb67381b3eab2b4736b0a6268 /gnome/gnome-compiz/Pkgfile | |
parent | 70c5aba3306407f6d324ff6ba48907ac9ac5f820 (diff) | |
parent | 6004cda4c59be4c34beaf6ad4132bad445735857 (diff) | |
download | nutyx-extra-0ccedd9a66979af592db57882bbe2fa0d746aea9.tar.gz nutyx-extra-0ccedd9a66979af592db57882bbe2fa0d746aea9.tar.bz2 nutyx-extra-0ccedd9a66979af592db57882bbe2fa0d746aea9.tar.xz nutyx-extra-0ccedd9a66979af592db57882bbe2fa0d746aea9.zip |
Merge remote branch 'nutyx-2009/master'
Diffstat (limited to 'gnome/gnome-compiz/Pkgfile')
-rwxr-xr-x | gnome/gnome-compiz/Pkgfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnome/gnome-compiz/Pkgfile b/gnome/gnome-compiz/Pkgfile new file mode 100755 index 000000000..c79188fa8 --- /dev/null +++ b/gnome/gnome-compiz/Pkgfile @@ -0,0 +1,26 @@ +# Description: Effets 3d pour le bureau +# URL: compiz.org +# Maintainer: NuTyX core team +# Packager: tux03 at tuxfamily dot org +# Depends on: compiz, gnome-control-center, libwnck +name=gnome-compiz +version=0.8.4 +release=1 +group= +source=(http://releases.compiz-fusion.org/0.8.4/compiz-0.8.4.tar.gz) +build() { +cd compiz-$version + ./configure --prefix=/usr \ + --enable-gnome --enable-gtk --disable-kde4 \ + --enable-metacity --enable-gconf \ + --with-gconf-schema-file-dir=/etc/gconf/schemas \ + --disable-dbus --disable-annotate + make -j3 + pushd gtk + make DESTDIR=$PKG install + mkdir -p $PKG/etc/gconf/schemas + install -m644 window-decorator/gwd.schemas \ + $PKG/etc/gconf/schemas/gwd.schemas + popd +} + |