A FUSE file system driver for FreeBSD's UFSv2. Features: - Read support for FreeBSD UFSv2 - Extended Attributes (no ACLs) - Bi-Endian support (eg. mounting big endian FS on little endian system) WWW: https://github.com/realchonk/fuse-ufs Event: GSoC 2024
26 lines
582 B
Makefile
26 lines
582 B
Makefile
|
|
PORTNAME= ufs
|
|
DISTVERSION= 0.3.0
|
|
CATEGORIES= sysutils
|
|
PKGNAMEPREFIX= fusefs-
|
|
|
|
MAINTAINER= fuz@FreeBSD.org
|
|
COMMENT= FUSE driver for FreeBSD's UFSv2
|
|
WWW= https://github.com/realchonk/fuse-ufs
|
|
|
|
# dependencies are all MIT licensed
|
|
LICENSE= BSD2CLAUSE MIT
|
|
LICENSE_COMB= multi
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.md
|
|
|
|
USES= cargo fuse:3
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= realchonk
|
|
GH_PROJECT= fuse-ufs
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/docs/fuse-ufs.8 ${STAGEDIR}${PREFIX}/share/man/man8/
|
|
${LN} ${STAGEDIR}${PREFIX}/bin/fuse-ufs ${STAGEDIR}${PREFIX}/bin/mount.ufs
|
|
|
|
.include <bsd.port.mk>
|