diff options
Diffstat (limited to 'gnome-utils/Pkgfile')
-rwxr-xr-x | gnome-utils/Pkgfile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnome-utils/Pkgfile b/gnome-utils/Pkgfile new file mode 100755 index 0000000..49d1bec --- /dev/null +++ b/gnome-utils/Pkgfile @@ -0,0 +1,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 + +} |