package created using the webbuild interface [release 1.0.4-1mamba;Fri Aug 21 2020]

This commit is contained in:
Silvan Calarco 2024-01-05 22:10:25 +01:00
parent 807df52309
commit 7e121d7283
2 changed files with 52 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# exfatprogs # exfatprogs
Userspace utilities that contain all of the standard utilities for creating and fixing and debugging exfat filesystem in linux system.

50
exfatprogs.spec Normal file
View File

@ -0,0 +1,50 @@
Name: exfatprogs
Version: 1.0.4
Release: 1mamba
Summary: Userspace utilities for creating and fixing and debugging exfat filesystem
Group: System/Kernel and Hardware
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://github.com/exfatprogs/exfatprogs.git
Source: https://github.com/exfatprogs/exfatprogs.git/%{version}/exfatprogs-%{version}.tar.bz2
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: ldconfig
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
Userspace utilities that contain all of the standard utilities for creating and fixing and debugging exfat filesystem in linux system.
%debug_package
%prep
%setup -q
./autogen.sh
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_sbindir}/fsck.exfat
%{_sbindir}/mkfs.exfat
%{_sbindir}/tune.exfat
%{_mandir}/man8/fsck.exfat.8*
%{_mandir}/man8/mkfs.exfat.8*
%{_mandir}/man8/tune.exfat.8*
%doc COPYING
%changelog
* Fri Aug 21 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.4-1mamba
- package created using the webbuild interface