blob: ebccdb2fe8bcb6850eb1a08e47cb71b423e429ab (
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: Librairie et applications pour la gestion des supports externes
# URL: http://www.gnome.org
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: gnome-doc-utils, dbus-glib, gtk3, libunique, libnotify, udisks, xorg-libx11, libatasmart, avahi-gtk
# Run on: dbus-glib,gtk3,libunique,libnotify,udisks
name=gnome-disk-utility
version=3.0.2
release=1
source=(http://ftp.gnome.org/pub/gnome/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-scrollkeeper \
--disable-nautilus \
--disable-gtk-doc
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/gnome/
}
|