blob: f29771d5a48f5e508cab53b7029baf3b5f58b5e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
DESCRIPTION = "parted, the GNU partition resizing program"
HOMEPAGE = "http://www.gnu.org/software/parted/parted.html"
LICENSE = "GPLv2"
SECTION = "console/tools"
DEPENDS = "readline e2fsprogs-libs"
PR = "r0"
SRC_URI = "${GNU_MIRROR}/parted/parted-${PV}.tar.gz"
EXTRA_OECONF = "--disable-Werror"
inherit autotools pkgconfig
do_configure() {
libtoolize --force
gnu-configize
oe_runconf
}
do_stage() {
autotools_stage_all
}
|