mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-27 07:57:27 +00:00
c625112dc7
Signed-off-by: Haris Okanovic <haris.okanovic@ni.com> Reviewed-by: Ben Shelton <ben.shelton@ni.com> Acked-by: Brad Mouring <brad.mouring@ni.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
33 lines
1.1 KiB
BlitzBasic
33 lines
1.1 KiB
BlitzBasic
SUMMARY = "Debian's start-stop-daemon utility extracted from the dpkg \
|
|
package"
|
|
LICENSE = "PD"
|
|
LIC_FILES_CHKSUM = "file://utils/start-stop-daemon.c;md5=a963623e4588f70122865aaa7a370ce4"
|
|
# start-stop-daemon is usually shipped by dpkg
|
|
DEPENDS = "ncurses"
|
|
RCONFLICTS_${PN} = "dpkg"
|
|
|
|
PNBLACKLIST[start-stop-daemon] ?= "BROKEN: fails because of gettext, partial fix is available here http://patchwork.openembedded.org/patch/89867/"
|
|
|
|
SRC_URI = "http://sources.openembedded.org/dpkg_${PV}.tar.bz2"
|
|
SRC_URI[md5sum] = "d211a84f38987771a49ad1c0f144334a"
|
|
SRC_URI[sha256sum] = "2a3d4ba83c743b3f004533fdd52372cb7b22f5c1da2042d0a31bbcc2b54c0ea5"
|
|
|
|
inherit autotools gettext pkgconfig
|
|
|
|
S = "${WORKDIR}/dpkg-${PV}"
|
|
|
|
EXTRA_OECONF = " \
|
|
--with-start-stop-daemon \
|
|
--without-bz2 \
|
|
--without-install-info \
|
|
--without-selinux \
|
|
--without-update-alternatives \
|
|
"
|
|
|
|
do_install_append () {
|
|
# remove everything that is not related to start-stop-daemon, since there
|
|
# is no explicit rule for only installing ssd
|
|
find ${D} -type f -not -name "*start-stop-daemon*" -exec rm {} \;
|
|
find ${D} -depth -type d -empty -exec rmdir {} \;
|
|
}
|