Change-Id: I66ce007cf10c20c3b2ab7ec3ad0375ebe5ed22c2
Reviewed-on: http://photon-jenkins.eng.vmware.com:8082/1641
Reviewed-by: Divya Thaluru <dthaluru@vmware.com>
Tested-by: gerrit-photon <photon-checkins@vmware.com>
| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,38 @@ |
| 0 |
+Summary: fuse filesystem to access remote ssh servers |
|
| 1 |
+Name: sshfs |
|
| 2 |
+Version: 2.8 |
|
| 3 |
+Release: 1%{?dist}
|
|
| 4 |
+License: GPLv2 |
|
| 5 |
+Url: https://github.com/libfuse/sshfs |
|
| 6 |
+Group: Filesystemd tools |
|
| 7 |
+Vendor: VMware, Inc. |
|
| 8 |
+Distribution: Photon |
|
| 9 |
+Source0: https://github.com/libfuse/sshfs/releases/download/%{name}_%{version}/%{name}-%{version}.tar.gz
|
|
| 10 |
+Requires: fuse >= 2.3 |
|
| 11 |
+Requires: glib >= 2.0 |
|
| 12 |
+BuildRequires: glib-devel >= 2.0 |
|
| 13 |
+BuildRequires: fuse-devel >= 2.3 |
|
| 14 |
+%define sha1 sshfs=2b792aa5b3a45e0c3fe65c44bd9da8f64a690830 |
|
| 15 |
+%description |
|
| 16 |
+This is a usermode fuse client to mount remote filesystems through SSH File Transfer Protocol. |
|
| 17 |
+ |
|
| 18 |
+%prep |
|
| 19 |
+%setup -q |
|
| 20 |
+%build |
|
| 21 |
+autoreconf -i |
|
| 22 |
+./configure --prefix=%{_prefix}
|
|
| 23 |
+make %{?_smp_mflags}
|
|
| 24 |
+ |
|
| 25 |
+%install |
|
| 26 |
+make install prefix=%{buildroot}%{_prefix}
|
|
| 27 |
+ |
|
| 28 |
+%files |
|
| 29 |
+%defattr(-, root, root) |
|
| 30 |
+%{_bindir}/*
|
|
| 31 |
+%{_datadir}/man/*
|
|
| 32 |
+ |
|
| 33 |
+ |
|
| 34 |
+%changelog |
|
| 35 |
+* Fri Nov 04 2016 Sharath George <sharathg@vmware.com> 2.8-1 |
|
| 36 |
+- Initial commit. |
|
| 37 |
+ |