diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/parted/parted_1.8.8.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/parted/parted_1.8.8.bb b/packages/parted/parted_1.8.8.bb new file mode 100644 index 0000000000..2d177d387a --- /dev/null +++ b/packages/parted/parted_1.8.8.bb @@ -0,0 +1,22 @@ +DESCRIPTION = "parted, the GNU partition resizing program" +HOMEPAGE = "http://www.gnu.org/software/parted/parted.html" +LICENSE = "GPLv3" +SECTION = "console/tools" +DEPENDS = "readline e2fsprogs-libs" + +SRC_URI = "${GNU_MIRROR}/parted/parted-${PV}.tar.gz \ + file://syscalls.h \ + file://syscalls.patch;patch=1 \ +" + +EXTRA_OECONF = "--disable-Werror" + +inherit autotools pkgconfig + +do_configure_prepend() { + cp ${WORKDIR}/syscalls.h ${S}/libparted/arch/ +} + +do_stage() { + autotools_stage_all +} |