mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
0bbb5551fa
The port became broken recently, and I'm not using it anymore, so just give it to anyone interested.
30 lines
762 B
Makefile
30 lines
762 B
Makefile
PORTNAME= securefs
|
|
PORTVERSION= 0.12.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
PKGNAMEPREFIX= fusefs-
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Filesystem in userspace with transparent encryption and decryption
|
|
WWW= https://github.com/netheril96/securefs
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.md
|
|
|
|
BROKEN= does not build
|
|
|
|
LIB_DEPENDS= libutf8proc.so:textproc/utf8proc \
|
|
libjsoncpp.so:devel/jsoncpp
|
|
|
|
USES= cmake compiler:c++11-lang fuse
|
|
LDFLAGS+= -L${LOCALBASE}/lib -lutf8proc -ljsoncpp
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= netheril96
|
|
PLIST_FILES= bin/securefs
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} "s|@GIT_VERSION@|${PORTVERSION}|" ${WRKSRC}/sources/git-version.cpp.in
|
|
${MV} ${WRKSRC}/sources/git-version.cpp.in ${WRKSRC}/sources/git-version.cpp
|
|
|
|
.include <bsd.port.mk>
|