blob: 295a3ed29272662b2ae3c26e31fa7a61bd0f67f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: GNOME python desktop about screen
# URL: http://www.gnome.org/about/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: gtksourceview, gnome-python, libgnomeui, startup-notification, gnome-doc-utils, totem, nautilus-cd-burner, brasero
name=gnome-python-desktop
version=2.28.0
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.bz2)
build() {
cd $name-$version
./configure --prefix=$GNOME_PREFIX \
--sysconfdir=/etc \
--localstatedir=/var/lib \
--mandir=/usr/man \
--enable-metacity \
--disable-scrollkeeper
make
make DESTDIR=$PKG install
}
|