Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1 | SUMMARY = "FUSE module for mounting an entire SMB/NMB network in a single directory" |
| 2 | DESCRIPTION = "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 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 7 | LICENSE = "GPL-2.0-only" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=eb723b61539feef013de476e68b5c50a" |
| 9 | HOMEPAGE ="http://sourceforge.net/projects/smbnetfs" |
| 10 | |
| 11 | DEPENDS = "fuse samba" |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 12 | DEPENDS:append:libc-musl = " libexecinfo" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 13 | |
Brad Bishop | e42b3e3 | 2020-01-15 22:08:42 -0500 | [diff] [blame] | 14 | inherit autotools pkgconfig features_check |
| 15 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 16 | # samba depends on libpam |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 17 | REQUIRED_DISTRO_FEATURES = "pam" |
| 18 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 19 | PV = "0.6.3" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 20 | |
Andrew Geissler | 9aee500 | 2022-03-30 16:27:02 +0000 | [diff] [blame] | 21 | SRCREV = "736d5e599df3bebce3450125118ac2e70358b0c9" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 22 | |
| 23 | SRC_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 | |
| 27 | PACKAGECONFIG ??= "" |
| 28 | PACKAGECONFIG[libsecret] = "--with-libsecret=yes,--with-libsecret=no,libsecret" |
| 29 | |
| 30 | S = "${WORKDIR}/git" |
| 31 | |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 32 | LDFLAGS:append:libc-musl = " -lexecinfo" |