20 lines
636 B
Makefile
20 lines
636 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="gptfdisk"
|
|
PKG_VERSION="1.0.4"
|
|
PKG_SHA256="b663391a6876f19a3cd901d862423a16e2b5ceaa2f4a3b9bb681e64b9c7ba78d"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://www.rodsbooks.com/gdisk/"
|
|
PKG_URL="https://downloads.sourceforge.net/project/$PKG_NAME/$PKG_NAME/$PKG_VERSION/$PKG_NAME-$PKG_VERSION.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain popt crossguid"
|
|
PKG_LONGDESC="GPT text-mode partitioning tools"
|
|
|
|
make_target() {
|
|
make sgdisk "CC=$CC" "CXX=$CXX"
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p $INSTALL/usr/sbin/
|
|
cp -p sgdisk $INSTALL/usr/sbin/
|
|
}
|