summaryrefslogtreecommitdiffstats
path: root/recipes-demo-hmi/html5-mixer/html5-mixer_git.bb
blob: 97b1195c8f53046ed98c142a42dc85b6892de602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
SUMMARY     = "AGL HTML5 Mixer Application"
HOMEPAGE    = "https://git.automotivelinux.org/apps/html5-mixer/"
SECTION     = "apps"
LICENSE     = "Apache-2.0"
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"

PV      = "1.0+git${SRCPV}"
S       = "${WORKDIR}/git/"

SRC_URI = "git://gerrit.automotivelinux.org/gerrit/apps/html5-mixer;protocol=https;branch=${AGL_BRANCH}"
SRCREV = "${AGL_APP_REVISION}"

DEPENDS = "nodejs-native"

inherit aglwgt
oftware * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include "socketcan.hpp" #include "../can/can-message.hpp" namespace utils { class socketcan_raw_t : public socketcan_t { public: using socketcan_t::socketcan_t; virtual int open(std::string device_name); private: int bind(const struct sockaddr* addr, socklen_t len); }; socketcan_raw_t& operator>>(socketcan_raw_t& s, can_message_t& cm); }