mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-01-23 23:22:20 +01:00
23 lines
681 B
Plaintext
23 lines
681 B
Plaintext
# Description: A userspace virtual filesystem designed to work with the I/O abstractions of gio (glib)
|
|
# URL: http://projects.gnome.org/
|
|
# Packager: Matt Housh, jaeger at crux dot ninja
|
|
# Maintainer: jolupa, jlpavon at me dot com
|
|
# Depends on: glib gcr samba libgcrypt polkit docbook-xsl libgphoto2 meson ninja libsoup
|
|
|
|
name=gvfs
|
|
version=1.36.0
|
|
release=1
|
|
source=(http://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
sed -i -e '/gtkdocize/d' autogen.sh
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
./configure --prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
--enable-udisks2 \
|
|
--disable-nls
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|