diff options
author | Scott Murray <scott.murray@konsulko.com> | 2023-01-18 20:59:20 -0500 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2023-01-19 15:35:18 -0500 |
commit | 43efe5de919056372ef8d85ca340aa3e653c609f (patch) | |
tree | cfeecfdc852640c9d4ab8f7f76f1f541b2064ee8 /recipes-demo | |
parent | 8b0fed47d196a938b44784d1fc8eaa25c36f84ca (diff) |
Restore agl-service-radio recipe
Add an update recipe for agl-service-radio to build the reworked
gRPC service daemon, and add it back as a dependency in
packagegroup-agl-ivi-services so it will be installed into the
demo IVI images.
Bug-AGL: SPEC-4665
Change-Id: If1015819d1ed20222d17d65b99c0d5a3cc034755
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'recipes-demo')
-rw-r--r-- | recipes-demo/agl-service-radio/agl-service-radio_git.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/recipes-demo/agl-service-radio/agl-service-radio_git.bb b/recipes-demo/agl-service-radio/agl-service-radio_git.bb new file mode 100644 index 000000000..5b38a0bf7 --- /dev/null +++ b/recipes-demo/agl-service-radio/agl-service-radio_git.bb @@ -0,0 +1,30 @@ +SUMMARY = "Demo Radio Service Daemon" +DESCRIPTION = "Demo Radio Service Daemon" +HOMEPAGE = "https://gerrit.automotivelinux.org/gerrit/#/admin/projects/apps/agl-service-radio" +LICENSE = "Apache-2.0 & GPLv2" +LIC_FILES_CHKSUM = "file://LICENSE;md5=ae6497158920d9524cf208c09cc4c984 \ + file://LICENSE.GPL-2.0-only;md5=751419260aa954499f7abaabaa882bbe" + +DEPENDS = " \ + glib-2.0 \ + glib-2.0-native \ + gstreamer1.0 \ + protobuf-native \ + grpc-native \ + grpc \ + systemd \ + rtl-sdr \ + libusb-compat \ +" + +SRC_URI = "git://gerrit.automotivelinux.org/gerrit/apps/agl-service-radio;protocol=https;branch=${AGL_BRANCH}" +SRCREV = "dd23c157bdba1b25bbb50cdb99a60aa597735f43" + +PV = "2.0+git${SRCPV}" +S = "${WORKDIR}/git" + +inherit meson pkgconfig systemd + +SYSTEMD_SERVICE:${PN} = "agl-service-radio.service" + +FILES:${PN} += "${systemd_system_unitdir}" |