From 7e121d7283fccc3434318885e68fdf86a4683aa4 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 22:10:25 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.0.4-1mamba;Fri Aug 21 2020] --- README.md | 2 ++ exfatprogs.spec | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 exfatprogs.spec diff --git a/README.md b/README.md index 1d25d08..28a01b2 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # exfatprogs +Userspace utilities that contain all of the standard utilities for creating and fixing and debugging exfat filesystem in linux system. + diff --git a/exfatprogs.spec b/exfatprogs.spec new file mode 100644 index 0000000..549e9c1 --- /dev/null +++ b/exfatprogs.spec @@ -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 +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 1.0.4-1mamba +- package created using the webbuild interface