branching
This commit is contained in:
parent
32db9daaa8
commit
1aa268285e
2 changed files with 43 additions and 0 deletions
42
afuse.spec
Normal file
42
afuse.spec
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
Name: afuse
|
||||
Summary: An automounter implemented with FUSE
|
||||
Version: 0.2
|
||||
Release: 1%{?dist}
|
||||
License: GPLv2+
|
||||
Group: System Environment/Base
|
||||
Source0: http://downloads.sourceforge.net/afuse/%{name}-%{version}.tar.gz
|
||||
URL: http://afuse.sourceforge.net/
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildRequires: fuse-devel
|
||||
|
||||
%description
|
||||
Afuse is an automounting file system implemented in user-space using FUSE.
|
||||
Afuse currently implements the most basic functionality that can be expected
|
||||
by an automounter; that is it manages a directory of virtual directories. If
|
||||
one of these virtual directories is accessed and is not already automounted,
|
||||
afuse will attempt to mount a filesystem onto that directory. If the mount
|
||||
succeeds the requested access proceeds as normal, otherwise it will fail
|
||||
with an error.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
make DESTDIR=%{buildroot} install
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS ChangeLog COPYING README
|
||||
%{_bindir}/afuse
|
||||
|
||||
%changelog
|
||||
* Fri Nov 21 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.2-1
|
||||
- Initial package for Fedora
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
97b58a768ecb30696fb6c33dd8435b83 afuse-0.2.tar.gz
|
||||
Loading…
Add table
Add a link
Reference in a new issue