Files
pascal e3ae73180b susmb lets you mount SMB/CIFS shares via FUSE, in the vein of the
Map Network Drive functionality in Windows.

This is a fork of sysutils/usmb (unmaintained upstream), adding privdrop and 
unveil(), and doing away with the XML configuration file.

Comments sthen@ and Hiltjo Posthuma (new upstream), OK sthen@
2026-02-23 20:12:29 +00:00

31 lines
622 B
Makefile

COMMENT = mount SMB shares via FUSE
DISTNAME = susmb-0.9
CATEGORIES = sysutils
HOMEPAGE = https://codemadness.org/git/susmb/
MAINTAINER = Pascal Stumpf <pascal@stumpf.co>
# GPLv3
PERMIT_PACKAGE = Yes
# uses unveil()
WANTLIB += c fuse smbclient
SITES = https://codemadness.org/releases/susmb/
LIB_DEPENDS = net/samba
MAKE_FLAGS = SMBCLIENT_CFLAGS="`pkg-config --cflags smbclient`" \
SMBCLIENT_LDFLAGS="`pkg-config --libs smbclient`" \
FUSE_CFLAGS="`pkg-config --cflags fuse`" \
FUSE_LDFLAGS="`pkg-config --libs fuse`"
FAKE_FLAGS = PREFIX="${TRUEPREFIX}"
NO_TEST = Yes
.include <bsd.port.mk>