new package: gptfdisk

Useful for partitioning external drives.
This commit is contained in:
Leonid Plyushch 2019-09-20 16:16:27 +03:00 committed by Yaksh Bariya
parent 26fb52f00d
commit 0f6faf35a8
No known key found for this signature in database
GPG Key ID: F7486BA7D3D27581
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
TERMUX_PKG_HOMEPAGE=https://www.rodsbooks.com/gdisk/
TERMUX_PKG_DESCRIPTION="A text-mode partitioning tool that works on GUID Partition Table (GPT) disks"
TERMUX_PKG_LICENSE="GPL-2.0"
TERMUX_PKG_VERSION=1.0.4
TERMUX_PKG_SRCURL=https://sourceforge.net/projects/gptfdisk/files/gptfdisk/$TERMUX_PKG_VERSION/gptfdisk-$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=b663391a6876f19a3cd901d862423a16e2b5ceaa2f4a3b9bb681e64b9c7ba78d
TERMUX_PKG_DEPENDS="libpopt"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_make_install() {
install -d "$TERMUX_PREFIX"/{bin,share/{doc/gdisk,man/man8}}
install -t "$TERMUX_PREFIX"/bin/ {,c,s}gdisk fixparts
install -m600 -t "$TERMUX_PREFIX"/share/man/man8/ {{,c,s}gdisk,fixparts}.8
}