package created using the webbuild interface [release 1.0.0-1mamba;Sun Sep 13 2015]

This commit is contained in:
Silvan Calarco 2024-01-05 23:23:26 +01:00
parent 21a1a95934
commit 6554371d6a
2 changed files with 59 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# gptfdisk # gptfdisk
GPT fdisk is a disk partitioning tool loosely modeled on Linux fdisk, but used for modifying GUID Partition Table (GPT) disks. The related FixParts utility fixes some common problems on Master Boot Record (MBR) disks.

57
gptfdisk.spec Normal file
View File

@ -0,0 +1,57 @@
Name: gptfdisk
Version: 1.0.0
Release: 1mamba
Summary: A disk partitioning tool loosely modeled on Linux fdisk, but used for modifying GUID Partition Table (GPT) disks
Group: System/Tools
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://www.rodsbooks.com/gdisk/
Source: http://downloads.sourceforge.net/project/gptfdisk/gptfdisk/%{version}/gptfdisk-%{version}.tar.gz
License: GPL
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libgcc
BuildRequires: libncurses-devel
BuildRequires: libpopt-devel
BuildRequires: libstdc++6-devel
BuildRequires: libuuid-devel
## AUTOBUILDREQ-END
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
GPT fdisk is a disk partitioning tool loosely modeled on Linux fdisk, but used for modifying GUID Partition Table (GPT) disks. The related FixParts utility fixes some common problems on Master Boot Record (MBR) disks.
%debug_package
%prep
%setup -q
%build
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
for f in cgdisk fixparts gdisk sgdisk; do
install -D -m0755 $f %{buildroot}%{_sbindir}$f
install -D -m0644 $f.8 %{buildroot}%{_mandir}/man8/$f.8
done
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files
%defattr(-,root,root)
%{_sbindir}cgdisk
%{_sbindir}fixparts
%{_sbindir}gdisk
%{_sbindir}sgdisk
%{_mandir}/man8/cgdisk.8*
%{_mandir}/man8/fixparts.8*
%{_mandir}/man8/gdisk.8*
%{_mandir}/man8/sgdisk.8*
%doc COPYING
%changelog
* Sun Sep 13 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-1mamba
- package created using the webbuild interface