summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2009-02-12 08:22:07 -0800
committerH. Peter Anvin <hpa@zytor.com>2009-02-12 08:22:07 -0800
commit6c0458f54435a6b162fa10f521c786e05ec49da7 (patch)
tree2bcc84c0cca9b9f85b729e1649d7edffdb0b9bc5
parentd80cf03bfc8b5ad2387a6f20a43aec5d6d34d0a9 (diff)
downloadfatattr-6c0458f54435a6b162fa10f521c786e05ec49da7.tar.gz
Initial version of the spec file
-rw-r--r--fatattr.spec.in38
1 files changed, 38 insertions, 0 deletions
diff --git a/fatattr.spec.in b/fatattr.spec.in
new file mode 100644
index 0000000..9b08935
--- /dev/null
+++ b/fatattr.spec.in
@@ -0,0 +1,38 @@
+Summary: Utilities to control attributes on a FAT filesystem
+Name: fatattr
+Version: @@VERSION@@
+Release: 1
+License: GPL
+Group: Applications/System
+URL: http://www.kernel.org/pub/linux/utils/fs/fat/fatattr/
+Source: http://www.kernel.org/pub/linux/utils/fs/fat/fatattr/fatattr-%{version}.tar.gz
+BuildRoot: %{_tmppath}/%{name}-%{version}-root
+Epoch: 1
+
+%description
+Tools to control file attributes on FAT filesystems. FAT filesystems contain
+several attributes which do not map cleanly onto Unix attributes; this
+utility allow these to be controlled directly.
+
+%prep
+%setup -q
+
+%build
+%configure
+make
+
+%install
+rm -rf $RPM_BUILD_ROOT
+make install INSTALLROOT="$RPM_BUILD_ROOT"
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root)
+%{_bindir}/fatattr
+%{_mandir}/man1/fatattr.1*
+
+%changelog
+* Thu Feb 12 2009 H. Peter Anvin <hpa@zytor.com>
+- Initial version.