mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
2ebb8752f3
The previous do_install is empty and do nothing. Unset variables datadir and mandir, use pimd's default set. So it could install doc files correctly. Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
18 lines
530 B
BlitzBasic
18 lines
530 B
BlitzBasic
SUMMARY = "pimd is a lightweight stand-alone PIM-SM v2 multicast routing daemon."
|
|
HOMEPAGE = "http://troglobit.com/pimd.html"
|
|
LICENSE = "BSD-3-Clause"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=94f108f91fab720d62425770b70dd790"
|
|
|
|
SRC_URI = "ftp://troglobit.com/pimd/${BP}.tar.bz2"
|
|
SRC_URI[md5sum] = "a12448bc7c9bfcebf51a13ebf1ffa962"
|
|
SRC_URI[sha256sum] = "01016940543a0a6131d4e6c91b595d47e187012c59a298eec14c3dbc38564b3a"
|
|
|
|
CFLAGS += "-I ${S}/include "
|
|
|
|
do_install() {
|
|
unset datadir
|
|
unset mandir
|
|
oe_runmake 'DESTDIR=${D}' install
|
|
}
|
|
|