blob: 49d1bec4080dd789744649b3be3e9dfaa06e912e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Description: Utilitaires pour GNOME
# URL: http://www.gnome.org/softwaremap/projects/gnome-utils/
# Maintainer: NuTyX GNOME team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libgnomeui, gnome-panel, libcanberra, libgtop
# Run on: libgnomeui,gnome-panel,libcanberra,libgtop
name=gnome-utils
version=3.1.2
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/share/man \
--libexecdir=/usr/lib/$name \
--sysconfdir=/etc \
--localstatedir=/var/lib
make
make DESTDIR=$PKG install
}
|