mirror of
https://github.com/mac-a-r0ni/crux-xfce4.git
synced 2025-02-02 10:42:21 +01:00
36 lines
859 B
Plaintext
36 lines
859 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.43.90
|
|
release=1
|
|
source=(http://download.gnome.org/sources/$name/${version:0:4}/$name-$version.tar.xz)
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
meson build \
|
|
--prefix=/usr \
|
|
--libexecdir=/usr/lib/$name \
|
|
-Denable-udisks2=true \
|
|
-Dlogind=false \
|
|
-Dsystemduserunitdir=no \
|
|
-Dtmpfilesdir=no \
|
|
-Ddnssd=false \
|
|
-Dfuse=false \
|
|
-Dafc=false \
|
|
-Dgoa=false \
|
|
-Dbluray=false \
|
|
-Dcdda=false \
|
|
-Dgoogle=false \
|
|
-Dmtp=false \
|
|
-Dnfs=false
|
|
|
|
DESTDIR=$PKG ninja -C build install
|
|
|
|
}
|