summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/fdisk/gptfdisk_1.0.1.bb
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2017-08-07 14:45:04 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-08-13 09:27:38 +0100
commit62455dfb8aabd5106f6316ef3fc93fc4116da17c (patch)
tree8af2755b2c368529c971335d6a64f4b9ef29e266 /meta/recipes-devtools/fdisk/gptfdisk_1.0.1.bb
parentfa9667855197cf1005b3368169eb3618e1e80a5a (diff)
downloadpoky-62455dfb8aabd5106f6316ef3fc93fc4116da17c.tar.gz
gptfdisk: update to 1.0.3
(From OE-Core rev: 9f635de4fc6ce9d32d2298679d6afce745ca5d80) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/fdisk/gptfdisk_1.0.1.bb')
-rw-r--r--meta/recipes-devtools/fdisk/gptfdisk_1.0.1.bb26
1 files changed, 0 insertions, 26 deletions
diff --git a/meta/recipes-devtools/fdisk/gptfdisk_1.0.1.bb b/meta/recipes-devtools/fdisk/gptfdisk_1.0.1.bb
deleted file mode 100644
index d62a903a70..0000000000
--- a/meta/recipes-devtools/fdisk/gptfdisk_1.0.1.bb
+++ /dev/null
@@ -1,26 +0,0 @@
1SUMMARY = "Utility for modifying GPT disk partitioning"
2DESCRIPTION = "GPT fdisk is a disk partitioning tool loosely modeled on Linux fdisk, but used for modifying GUID Partition Table (GPT) disks. The related FixParts utility fixes some common problems on Master Boot Record (MBR) disks."
3
4LICENSE = "GPLv2"
5LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
6
7DEPENDS = "util-linux popt ncurses"
8
9SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${PV}/${BP}.tar.gz"
10SRC_URI[md5sum] = "d7f3d306b083123bcc6f5941efade586"
11SRC_URI[sha256sum] = "864c8aee2efdda50346804d7e6230407d5f42a8ae754df70404dd8b2fdfaeac7"
12
13UPSTREAM_CHECK_URI = "http://sourceforge.net/projects/gptfdisk/files/gptfdisk/"
14UPSTREAM_CHECK_REGEX = "/gptfdisk/(?P<pver>(\d+[\.\-_]*)+)/"
15
16EXTRA_OEMAKE = "'CC=${CC}' 'CXX=${CXX}'"
17
18do_install() {
19 install -d ${D}${sbindir}
20 install -m 0755 cgdisk ${D}${sbindir}
21 install -m 0755 gdisk ${D}${sbindir}
22 install -m 0755 sgdisk ${D}${sbindir}
23 install -m 0755 fixparts ${D}${sbindir}
24}
25
26BBCLASSEXTEND = "native nativesdk"