Petr Gajdos
8476a63c8e
- Update to 3.0.28 * mkfs.fat now allows choosing 0xF0 as the media byte which was previously rejected. * mkfs.fat now supports the --invariant option to facilitate testing mkfs.fat itself. * Bugs fixed in fsck.fat are a read one byte beyond the end of an allocated array when checking some FAT12 filesystems, and checking that the first cluster of a file as specified in the directory entry is not 1. - Cleanup spec file with spec-cleaner OBS-URL: https://build.opensuse.org/request/show/310160 OBS-URL: https://build.opensuse.org/package/show/Base:System/dosfstools?expand=0&rev=66
66 lines
2.1 KiB
RPMSpec
66 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package dosfstools
|
|
#
|
|
# Copyright (c) 2015 SUSE LINUX 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/
|
|
#
|
|
|
|
|
|
Name: dosfstools
|
|
Version: 3.0.28
|
|
Release: 0
|
|
Summary: Utilities for Making and Checking MS-DOS FAT File Systems on Linux
|
|
License: GPL-3.0+
|
|
Group: System/Filesystems
|
|
Url: https://github.com/dosfstools/dosfstools
|
|
#Git-Clone: git://daniel-baumann.ch/git/software/dosfstools
|
|
Source: https://github.com/dosfstools/dosfstools/releases/download/v%{version}/dosfstools-%{version}.tar.gz
|
|
Source2: https://github.com/dosfstools/dosfstools/releases/download/v%{version}/dosfstools-%{version}.tar.gz.sig
|
|
Source3: %{name}.keyring
|
|
Patch0: %{name}-suse-dirs.patch
|
|
Supplements: filesystem(vfat)
|
|
Provides: dosfsck
|
|
Provides: mkdosfs
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%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.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch0 -p1
|
|
|
|
%build
|
|
make CC="gcc" OPTFLAGS="-D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE %{optflags}" %{?_smp_mflags}
|
|
|
|
%install
|
|
make install DESTDIR=%{buildroot} SBINDIR=%{_sbindir}
|
|
#UsrMerge
|
|
mkdir %{buildroot}/sbin
|
|
ln -sf %{_sbindir}/{dosfsck,dosfslabel,mkdosfs,fsck.msdos,mkfs.msdos,fsck.fat,fsck.vfat,mkfs.fat,mkfs.vfat} %{buildroot}/sbin
|
|
#EndUsrMerge
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc %{_docdir}/%{name}
|
|
#UsrMerge
|
|
/sbin/*
|
|
#EndUsrMerge
|
|
%{_sbindir}/*
|
|
%{_mandir}/man8/*.gz
|
|
%{_mandir}/de/man8/*.gz
|
|
|
|
%changelog
|