blob: 75f764cde43b3e63279603b8e5fe4b4140e893b4 (
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
|
# Description: Containt le programme About, les icons et fichiers graphics de gnome
# URL: http://www.gnome.org/
# Maintainer: NuTyX core team
# Packager: b at juglas dot name
# Depends on: gnome-doc-utils, libgnomeui, startup-notification, gnome-doc-utils, gsettings-desktop-schemas, gnome-themes-standard
# Run on: libgnomeui,startup-notification,rarian,gsettings-desktop-schemas,gnome-themes-standard
name=gnome-desktop
version=3.2.1
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib \
--with-gnome-distributor="NuTyX" \
--disable-gtk-doc \
--disable-scrollkeeper
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gtk-doc
}
|