58 lines
1.6 KiB
RPMSpec
58 lines
1.6 KiB
RPMSpec
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
|