From 9f05b3c7b0ea1c96cb1021accb604a2a86befc5b Mon Sep 17 00:00:00 2001 From: Poyraz76 Date: Sat, 5 Sep 2015 17:27:12 +0300 Subject: [PATCH] gptfdisk --- hardware/disk/gptfdisk/actions.py | 23 ++++++++++++ hardware/disk/gptfdisk/pspec.xml | 47 +++++++++++++++++++++++++ hardware/disk/gptfdisk/translations.xml | 7 ++++ 3 files changed, 77 insertions(+) create mode 100644 hardware/disk/gptfdisk/actions.py create mode 100644 hardware/disk/gptfdisk/pspec.xml create mode 100644 hardware/disk/gptfdisk/translations.xml diff --git a/hardware/disk/gptfdisk/actions.py b/hardware/disk/gptfdisk/actions.py new file mode 100644 index 0000000000..ca21e6776c --- /dev/null +++ b/hardware/disk/gptfdisk/actions.py @@ -0,0 +1,23 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/copyleft/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools + +def build(): + autotools.make() + +def install(): + pisitools.dobin("cgdisk") + pisitools.dobin("fixparts") + pisitools.dobin("gdisk") + pisitools.dobin("sgdisk") + + pisitools.doman("cgdisk.8") + pisitools.doman("fixparts.8") + pisitools.doman("gdisk.8") + pisitools.doman("sgdisk.8") + + pisitools.dodoc("COPYING", "NEWS", "README") \ No newline at end of file diff --git a/hardware/disk/gptfdisk/pspec.xml b/hardware/disk/gptfdisk/pspec.xml new file mode 100644 index 0000000000..802eacccc5 --- /dev/null +++ b/hardware/disk/gptfdisk/pspec.xml @@ -0,0 +1,47 @@ + + + gptfdisk + http://www.rodsbooks.com/gdisk/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + app:console + A text-mode partitioning tool that works on GUID Partition Table (GPT) disks + A text-mode partitioning tool that works on GUID Partition Table (GPT) disks + + util-linux + + http://sourceforge.net/projects/gptfdisk/files/gptfdisk/1.0.0/gptfdisk-1.0.0.tar.gz + + + + gptfdisk + + util-linux + + + /usr/share/man + /usr/share/doc + /usr/bin + + + + + + 2015-05-01 + 1.0.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-04 + 0.8.10 + First Release + Osman Erkan + osman.erkan@pisilinux.org + + + diff --git a/hardware/disk/gptfdisk/translations.xml b/hardware/disk/gptfdisk/translations.xml new file mode 100644 index 0000000000..978aafa489 --- /dev/null +++ b/hardware/disk/gptfdisk/translations.xml @@ -0,0 +1,7 @@ + + + gptfdisk + A text-mode partitioning tool that works on GUID Partition Table (GPT) disks + A text-mode partitioning tool that works on GUID Partition Table (GPT) disks + + \ No newline at end of file