summaryrefslogtreecommitdiffstats
path: root/gnome-user-share/Pkgfile
blob: 4cf770766a63dd5f20c37386f37185e6c9dfc811 (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
25
26
27
# Description: Partage de fichier simple d'utilisation pour Gnome
# URL: http://library.gnome.org/users/gnome-user-share/3.0/gnome-user-share.html
# Maintainer: NuTyX GNOME team
# Packager: piernov <piernov@piernov.org>
# Depends on: gconf, gtk3, libnotify, gnome-bluetooth, libcanberra, nautilus
# Run on: gconf,gtk3,libnotify,gnome-bluetooth,libcanberra,nautilus

name=gnome-user-share
version=3.0.2
release=1
source=(http://download.gnome.org/sources/$name/${version%.*}/$name-$version.tar.xz)

build() {
	cd $name-$version
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--libexecdir=/usr/lib/$name \
		--localstatedir=/var
	make
	make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=$PKG install

	install -m755 -d $PKG/usr/share/gconf/schemas
	gconf-merge-schema $PKG/usr/share/gconf/schemas/$name.schemas --domain $name $PKG/etc/gconf/schemas/*.schemas
	rm -f $PKG/etc/gconf/schemas/*.schemas

        rm -rf $PKG/usr/share/gtk-doc
}