Skip to content

Commit

Permalink
gptfdisk: Add version 1.0.1
Browse files Browse the repository at this point in the history
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 <pmenzel@molgen.mpg.de>
  • Loading branch information
thomas authored and pmenzel committed Jul 27, 2016
1 parent 63e2df5 commit 610f7a3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions gptfdisk.be0
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit 610f7a3

Please sign in to comment.