File sshfs.spec of Package sshfs
#
# spec file for package sshfs
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: sshfs
Version: 2.9
Release: 0
Summary: Filesystem client based on SSH file transfer protocol
License: GPL-2.0+
Group: System/Filesystems
Url: https://github.com/libfuse/sshfs
Source: https://github.com/libfuse/sshfs/releases/download/%{name}-%{version}/%{name}-%{version}.tar.gz
BuildRequires: automake
BuildRequires: fuse-devel
BuildRequires: glib2-devel
Requires: fuse
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
SSHFS is a filesystem client based on the SSH File Transfer Protocol.
Since most SSH servers already support this protocol it is very easy to
set up: i.e. on the server side there's nothing to do. On the client
side mounting the filesystem is as easy as logging into the server with
openssh (ssh).
%prep
%setup -q
%build
%{?suse_update_config:%{suse_update_config -f}}
autoreconf -fi
%configure --disable-sshnodelay
make %{?_smp_mflags} V=1
%install
make %{?_smp_mflags} DESTDIR=%{buildroot} install
%files
%defattr(-,root,root)
%doc AUTHORS COPYING ChangeLog
%{_mandir}/*/*
%{_bindir}/*
%changelog