blob: be3870b8a4439fb531a21fe833464d32ed3cf4e2 [file] [log] [blame]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05001SUMMARY = "Userspace NFS server v3 protocol"
Brad Bishopf3f93bb2019-10-16 14:33:32 -04002DESCRIPTION = "UNFS3 is a user-space implementation of the NFSv3 server \
3specification. It provides a daemon for the MOUNT and NFS protocols, which \
4are used by NFS clients for accessing files on the server."
Andrew Geissler90fd73c2021-03-05 15:25:55 -06005HOMEPAGE = "https://github.com/unfs3/unfs3"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05006SECTION = "console/network"
7LICENSE = "unfs3"
8LIC_FILES_CHKSUM = "file://LICENSE;md5=9475885294e17c0cc0067820d042792e"
9
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050010DEPENDS = "flex-native bison-native flex"
Brad Bishop00111322018-04-01 22:23:53 -040011DEPENDS += "libtirpc"
Patrick Williams213cb262021-08-07 19:21:33 -050012DEPENDS:append:class-nativesdk = " flex-nativesdk"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050013
Brad Bishop96ff1982019-08-19 13:50:42 -040014S = "${WORKDIR}/git"
Andrew Geissler595f6302022-01-24 19:11:47 +000015SRC_URI = "git://github.com/unfs3/unfs3.git;protocol=https;branch=master \
Andrew Geissler517393d2023-01-13 08:55:19 -060016 file://0001-daemon.c-Fix-race-window-for-writing-of-the-pid-file.patch \
17 file://0001-Alias-off64_t-to-off_t-on-linux-if-not-defined.patch \
Andrew Geisslerc5535c92023-01-27 16:10:19 -060018 file://0001-locate.c-Include-attr.h.patch \
Andrew Geissler517393d2023-01-13 08:55:19 -060019 "
20SRCREV = "c8f2d2cd4529955419bad0e163f88d47ff176b8d"
Patrick Williams2390b1b2022-11-03 13:47:49 -050021UPSTREAM_CHECK_GITTAGREGEX = "unfs3\-(?P<pver>\d+(\.\d+)+)"
Brad Bishop96ff1982019-08-19 13:50:42 -040022
Andrew Geissler517393d2023-01-13 08:55:19 -060023PV = "0.10.0"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050024
25BBCLASSEXTEND = "native nativesdk"
26
Andrew Geissler517393d2023-01-13 08:55:19 -060027inherit autotools pkgconfig
Patrick Williams213cb262021-08-07 19:21:33 -050028EXTRA_OECONF:append:class-native = " --sbindir=${bindir}"