76 lines
2.3 KiB
RPMSpec
76 lines
2.3 KiB
RPMSpec
Name: gptfdisk
|
|
Version: 1.0.5
|
|
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
|
|
|
|
# https://sourceforge.net/p/gptfdisk/discussion/939590/thread/bc29ca06f8/
|
|
sed -i '/^#include /s|ncursesw/||' gptcurses.cc
|
|
|
|
%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
|
|
* Fri Feb 28 2020 Automatic Build System <autodist@mambasoft.it> 1.0.5-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Jul 10 2018 Automatic Build System <autodist@mambasoft.it> 1.0.4-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Fri Jul 28 2017 Automatic Build System <autodist@mambasoft.it> 1.0.3-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Thu Oct 22 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.1-2mamba
|
|
- fix sbin prefix path
|
|
|
|
* Mon Oct 19 2015 Automatic Build System <autodist@mambasoft.it> 1.0.1-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Sun Sep 13 2015 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0.0-1mamba
|
|
- package created using the webbuild interface
|