#Maintainer: George Vlahavas (vlahavas~at~gmail~dot~com) pkgname=gvfs pkgver=1.16.4 pkgrel=1gv source=("http://ftp.gnome.org/pub/GNOME/sources/gvfs/1.16/gvfs-1.16.4.tar.xz") docs=("readme" "install" "copying" "changelog" "authors" "news" "todo" "maintainers") url=ftp://ftp.gnome.org/pub/gnome/sources/gvfs options=('noautodotnew') slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "gvfs (a userspace virtual filesystem)" "gvfs is a userspace virtual filesystem where mount runs as a separate" "processes which you talk to via dbus. It also contains a gio module" "that seamlessly adds gvfs support to all applications using the gio" "API. It also supports exposing the gvfs mounts to non-gio applications" "using fuse." ) build() { cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --localstatedir=/var \ --sysconfdir=/etc \ --disable-static \ --disable-hal \ --with-bash-completion-dir=/etc/bash_completion.d \ --disable-gtk-doc \ --build=$arch-slackware-linux make || return 1 make install DESTDIR=$startdir/pkg # Don't set AutoMount to true for network volumes. Doing so leads to long # delays in Thunar. Users may click the network button in Thunar to mount # them instead. sed -i -e "s/AutoMount=true/AutoMount=false/g" $startdir/pkgusr/share/gvfs/mounts/network.mount # Don't ship .la files: rm -f $startdir/pkg/usr/lib${LIBDIRSUFFIX}/*.la }