blob: de53f3d5b10a1c20545c714d5414ba6d6598881d (
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
# 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/
}
|