1
0
This repository has been archived on 2024-11-10. You can view files and clone it, but cannot push or open issues or pull requests.

21 lines
654 B
Makefile
Raw Permalink Normal View History

# SPDX-License-Identifier: GPL-2.0
2018-07-16 20:45:36 +02:00
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
2017-02-20 23:31:10 +01:00
PKG_NAME="gptfdisk"
PKG_VERSION="1.0.6"
PKG_SHA256="ddc551d643a53f0bd4440345d3ae32c49b04a797e9c01036ea460b6bb4168ca8"
2017-02-20 23:31:10 +01:00
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"
2019-02-08 17:17:43 +00:00
PKG_DEPENDS_TARGET="toolchain popt crossguid"
2017-02-20 23:31:10 +01:00
PKG_LONGDESC="GPT text-mode partitioning tools"
make_target() {
make sgdisk "CC=${CC}" "CXX=${CXX}"
2017-02-20 23:31:10 +01:00
}
makeinstall_target() {
mkdir -p ${INSTALL}/usr/sbin/
cp -p sgdisk ${INSTALL}/usr/sbin/
2017-02-20 23:31:10 +01:00
}