From 610f7a3fa7303dffeeac67975677ee44f3452d3c Mon Sep 17 00:00:00 2001 From: Thomas Kreitler Date: Mon, 25 Jul 2016 18:12:41 +0200 Subject: [PATCH] gptfdisk: Add version 1.0.1 gptfdisk (GPT fdisk utilities) [1]: > GPT fdisk (consisting of the gdisk, cgdisk, sgdisk, and fixparts > programs) is a set of text-mode partitioning tools for using a GPT > (GUID Partition Table), rather than the traditional MBR (Master Boot > Record) partition tables. It features several partitioning tools, > recovery tools to help you deal with corrupt partition tables, and the > ability to convert MBR disks to GPT format. There is no install make target, so implement that manually. [1] https://sourceforge.net/projects/gptfdisk/ Improved-by: Paul Menzel --- gptfdisk.be0 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 gptfdisk.be0 diff --git a/gptfdisk.be0 b/gptfdisk.be0 new file mode 100755 index 000000000..625a3ec64 --- /dev/null +++ b/gptfdisk.be0 @@ -0,0 +1,12 @@ +#!/bin/env beesh + +# BEE_VERSION gptfdisk-1.0.1-0 + +SRCURL[0]="http://www.rodsbooks.com/gdisk/gptfdisk-${PKGVERSION}.tar.gz" + +function mee_install() { + for FILE in cgdisk fixparts gdisk sgdisk ; do + install -D $FILE "${D}"/"${SBINDIR}"/$FILE + install -D $FILE.8 "${D}"/"${MANDIR}"/man8/$FILE.8 + done +}