blob: e84bdc98e6e452f81bb648698d7995cf613f1c0c [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001SUMMARY = "FUSE module for mounting an entire SMB/NMB network in a single directory"
2DESCRIPTION = "SMBNetFS is a Linux/FreeBSD filesystem that allow you to use \
3 samba/microsoft network in the same manner as the network \
4 neighborhood in Microsoft Windows. Please donate me to help \
5 in SMBNetFS development."
6
7LICENSE = "GPLv2"
8LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a"
9HOMEPAGE ="http://sourceforge.net/projects/smbnetfs"
10
11DEPENDS = "fuse samba"
Patrick Williams213cb262021-08-07 19:21:33 -050012DEPENDS:append:libc-musl = " libexecinfo"
Brad Bishop316dfdd2018-06-25 12:45:53 -040013
Brad Bishope42b3e32020-01-15 22:08:42 -050014inherit autotools pkgconfig features_check
15
Brad Bishop316dfdd2018-06-25 12:45:53 -040016# samba depends on libpam
Brad Bishop316dfdd2018-06-25 12:45:53 -040017REQUIRED_DISTRO_FEATURES = "pam"
18
Brad Bishope42b3e32020-01-15 22:08:42 -050019PV = "0.6.1+git${SRCPV}"
Brad Bishop316dfdd2018-06-25 12:45:53 -040020
Brad Bishope42b3e32020-01-15 22:08:42 -050021SRCREV = "a117eec8de7ed7249871da73dcc350283ce72069"
Brad Bishop316dfdd2018-06-25 12:45:53 -040022
23SRC_URI = "git://smbnetfs.git.sourceforge.net/gitroot/smbnetfs/smbnetfs;branch=master \
24 file://configure.patch \
25 file://Using-PKG_CHECK_MODULES-to-found-headers-and-libraries.patch"
26
27PACKAGECONFIG ??= ""
28PACKAGECONFIG[libsecret] = "--with-libsecret=yes,--with-libsecret=no,libsecret"
29
30S = "${WORKDIR}/git"
31
Patrick Williams213cb262021-08-07 19:21:33 -050032LDFLAGS:append:libc-musl = " -lexecinfo"