forked from pool/posixovl
Jeff Mahoney
b0f4f4e945
FUSE file system that provides POSIX functionality OBS-URL: https://build.opensuse.org/request/show/67680 OBS-URL: https://build.opensuse.org/package/show/filesystems/posixovl?expand=0&rev=1
42 lines
758 B
RPMSpec
42 lines
758 B
RPMSpec
|
|
Name: posixovl
|
|
Version: 1.2
|
|
Release: 0
|
|
Group: System/Filesystems
|
|
Summary: POSIX overlay filesystem
|
|
License: GPL
|
|
URL: http://posixovl.sf.net/
|
|
|
|
Source: %name-%version.tar.xz
|
|
BuildRoot: %_tmppath/%name-%version-build
|
|
BuildRequires: libattr-devel, fuse-devel >= 2.6.5, pkg-config, xz
|
|
|
|
%description
|
|
A FUSE filesystem that provides POSIX functionality - UNIX-style
|
|
permissions, ownership, special files - for filesystems that do not
|
|
have such, e.g. vfat. It is a modern equivalent of the UMSDOS fs.
|
|
|
|
Author:
|
|
-------
|
|
Jan Engelhardt
|
|
|
|
%prep
|
|
%setup -qn %name
|
|
|
|
%build
|
|
if [ ! -e configure ]; then
|
|
./autogen.sh;
|
|
fi;
|
|
%configure
|
|
make %{?_smp_mflags};
|
|
|
|
%install
|
|
make install DESTDIR="%buildroot";
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%_sbindir/*
|
|
%_mandir/man*/*
|
|
|
|
%changelog
|