# # spec file for package dosfstools (Version 3.0.9) # # Copyright (c) 2010 SUSE LINUX Products 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/ # # norootforbuild Name: dosfstools Provides: mkdosfs dosfsck License: GPLv3 Group: System/Filesystems AutoReqProv: on Summary: Utilities for Making and Checking MS-DOS FAT File Systems on Linux Version: 3.0.9 Release: 1 Url: http://freshmeat.net/projects/dosfstools Source: %{name}_%{version}.orig.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build Supplements: filesystem(vfat) %description The dosfstools package includes the mkdosfs and dosfsck utilities, which respectively make and check MS-DOS FAT file systems on hard drives or on floppies. Authors: -------- Dave Hudson Werner Almesberger Roman Hodek %prep %setup %build make OPTFLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE $RPM_OPT_FLAGS" %install # directories install -d $RPM_BUILD_ROOT{/sbin,%{_mandir}/man8} # binaries install -m755 mkdosfs $RPM_BUILD_ROOT/sbin/ install -m755 dosfsck $RPM_BUILD_ROOT/sbin/ # alternative names ln -sf mkdosfs $RPM_BUILD_ROOT/sbin/mkfs.msdos ln -sf dosfsck $RPM_BUILD_ROOT/sbin/fsck.msdos ln -sf mkdosfs $RPM_BUILD_ROOT/sbin/mkfs.vfat ln -sf dosfsck $RPM_BUILD_ROOT/sbin/fsck.vfat # man pages install -m 644 man/mkdosfs.8 $RPM_BUILD_ROOT%{_mandir}/man8/ install -m 644 man/dosfsck.8 $RPM_BUILD_ROOT%{_mandir}/man8/ install -m 644 man/dosfslabel.8 $RPM_BUILD_ROOT%{_mandir}/man8/ # man pages for alternative names ln -sf mkdosfs.8.gz $RPM_BUILD_ROOT%{_mandir}/man8/mkfs.msdos.8.gz ln -sf dosfsck.8.gz $RPM_BUILD_ROOT%{_mandir}/man8/fsck.msdos.8.gz ln -sf mkdosfs.8.gz $RPM_BUILD_ROOT%{_mandir}/man8/mkfs.vfat.8.gz ln -sf dosfsck.8.gz $RPM_BUILD_ROOT%{_mandir}/man8/fsck.vfat.8.gz # documentation install -d $RPM_BUILD_ROOT/%{_docdir}/%{name}/ install -m644 ChangeLog COPYING doc/* $RPM_BUILD_ROOT/%{_docdir}/%{name}/ %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) %doc %{_docdir}/%{name} /sbin/* %{_mandir}/man8/*.gz %changelog