mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 20:07:25 +00:00
52b21a1951
1. inherit autotools-brokensep, or else configuration will fail since B!=S 2. use pkg-config to detect ncurses, since ncurses-config no longer works Signed-off-by: Roy Li <rongqing.li@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
28 lines
878 B
PHP
28 lines
878 B
PHP
SUMMARY = "display dialog boxes from shell scripts"
|
|
DESCRIPTION = "Dialog lets you to present a variety of questions \
|
|
or display messages using dialog boxes from a shell \
|
|
script (or any scripting language)."
|
|
HOMEPAGE = "http://invisible-island.net/dialog/"
|
|
SECTION = "console/utils"
|
|
DEPENDS = "ncurses"
|
|
LICENSE = "LGPL-2.1"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343"
|
|
|
|
SRC_URI = "ftp://invisible-island.net/dialog/dialog-${PV}.tgz \
|
|
file://use-pkg-config-for-ncurses-detection.patch \
|
|
"
|
|
|
|
# hardcoded here for use in dialog-static recipe
|
|
S = "${WORKDIR}/dialog-${PV}"
|
|
|
|
inherit autotools-brokensep pkgconfig
|
|
|
|
EXTRA_OECONF = "--with-ncurses \
|
|
--disable-rpath-hack"
|
|
|
|
do_configure() {
|
|
gnu-configize --force
|
|
sed -i 's,${cf_ncuconfig_root}6-config,${cf_ncuconfig_root}-config,g' -i configure
|
|
oe_runconf
|
|
}
|