mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
e3ae73180b
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@
31 lines
622 B
Makefile
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>
|