blob: f738cdb00e01648573388363f09591157b05ee61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
FILESEXTRAPATHS:prepend := "${THISDIR}/flutter-gallery:"
# Override SRC_URI to handle branch rename to "main"
SRC_URI = "git://github.com/flutter/gallery.git;lfs=0;branch=main;protocol=https;destsuffix=git"
# Add our desired systemd unit
SRC_URI += "file://flutter-gallery.service"
inherit systemd
do_install:append() {
install -D -m 0644 ${WORKDIR}/${BPN}.service ${D}${systemd_system_unitdir}/${BPN}.service
}
RDEPENDS:${PN} += "agl-flutter-env"
SYSTEMD_SERVICE:${PN} = "flutter-gallery.service"
|