mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 00:32:12 +02:00
(From OE-Core rev: 607a7657715f6fcba467a4e55ba64f41f4e13a15) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
23 lines
630 B
BlitzBasic
23 lines
630 B
BlitzBasic
DESCRIPTION = "opkg configuration files"
|
|
SECTION = "base"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
SRC_URI = "file://opkg.conf.comments \
|
|
file://lists \
|
|
file://dest \
|
|
file://src "
|
|
|
|
do_compile () {
|
|
cat ${WORKDIR}/opkg.conf.comments >${WORKDIR}/opkg.conf
|
|
cat ${WORKDIR}/src >>${WORKDIR}/opkg.conf
|
|
cat ${WORKDIR}/dest >>${WORKDIR}/opkg.conf
|
|
cat ${WORKDIR}/lists >>${WORKDIR}/opkg.conf
|
|
}
|
|
|
|
do_install () {
|
|
install -d ${D}${sysconfdir}/
|
|
install -m 0644 ${WORKDIR}/opkg.conf ${D}${sysconfdir}/opkg.conf
|
|
}
|
|
|
|
CONFFILES_${PN} = "${sysconfdir}/opkg.conf"
|