blob: 4b6cd331d43962cdfe493a8feb0d573a7985bf7e [file] [log] [blame]
Adriana Kobylak2fae8ec2018-09-24 14:27:15 -05001SUMMARY = "Network Block Device Proxy"
2HOMEPAGE = "https://github.com/openbmc/jsnbd"
Adriana Kobylak2fae8ec2018-09-24 14:27:15 -05003LICENSE = "Apache-2.0"
4LIC_FILES_CHKSUM = "file://LICENCE;md5=3b83ef96387f14655fc854ddc3c6bd57"
Adriana Kobylak2fae8ec2018-09-24 14:27:15 -05005DEPENDS += "json-c"
6DEPENDS += "udev"
Ed Tanous9936f862022-09-19 09:13:20 -07007SRCREV = "3ebe3dadd3f550d20080c8bb14dee113e322eb61"
8PV = "1.0+git${SRCPV}"
9PR = "r1"
Adriana Kobylak2fae8ec2018-09-24 14:27:15 -050010
Ed Tanous9936f862022-09-19 09:13:20 -070011SRC_URI = "git://github.com/openbmc/jsnbd;branch=master;protocol=https"
Adriana Kobylak723136d2018-10-03 15:16:29 -050012
Adriana Kobylak2fae8ec2018-09-24 14:27:15 -050013S = "${WORKDIR}/git"
14
Ed Tanous9936f862022-09-19 09:13:20 -070015inherit autotools pkgconfig
Adriana Kobylak329a8052018-10-24 13:31:40 -050016
Patrick Williams12fc9392021-08-06 09:16:53 -050017do_install:append() {
Adriana Kobylak329a8052018-10-24 13:31:40 -050018 install -d ${D}${sysconfdir}/nbd-proxy/
19 install -m 0644 ${NBD_PROXY_CONFIG_JSON} ${D}${sysconfdir}/nbd-proxy/config.json
20}
Ed Tanous9936f862022-09-19 09:13:20 -070021
22RDEPENDS:${PN} += "nbd-client"
23
24NBD_PROXY_CONFIG_JSON ??= "${S}/config.sample.json"